~ubuntu-branches/ubuntu/precise/build-essential/precise

« back to all changes in this revision

Viewing changes to hellos/hello/debian/postinst

  • Committer: Bazaar Package Importer
  • Author(s): Antti-Juhani Kaijanaho
  • Date: 2002-02-17 16:07:22 UTC
  • Revision ID: james.westby@ubuntu.com-20020217160722-czamutt6zgfvt1qy
Tags: 6
* ran "make make-esslist", again.
* debian/rules: Install list into $(sharedir),
  and install a symlink from there to $(docdir),
  closes: #134390.
* Updated debian/librules.mk.
* debian/control: Updated Standards-Version to 3.5.6.
* debian/copyright: Updated copyright year list.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
package=hello-bess
 
6
 
 
7
# FHS transition
 
8
if [ -d /usr/doc ]; then
 
9
   if [ ! -e /usr/doc/$package -a -d /usr/share/doc/$package ]; then
 
10
      ln -s ../share/doc/$package /usr/doc/$package
 
11
   fi
 
12
fi