~ubuntu-branches/ubuntu/hoary/pcre3/hoary-security

« back to all changes in this revision

Viewing changes to debian/postinst

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2001-08-19 20:43:28 UTC
  • Revision ID: james.westby@ubuntu.com-20010819204328-7tza8mqo4pu7w1dy
Tags: 3.4-1.1
* Non-maintainer upload.
* Rebuild with a version of libc6 without a broken atexit() symbol
  (closes: #108597, critical).
* Add to LD_LIBRARY_PATH rather than clobbering it, to avoid fakeroot
  dying (closes: #108661, #108891).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh -e
 
2
 
 
3
package=PACKAGE
 
4
 
 
5
case "$1" in
 
6
    configure)
 
7
 
 
8
        # Create /usr/doc symlink
 
9
        if [ -d /usr/doc -a ! -e /usr/doc/$package ]; then
 
10
            ln -sf ../share/doc/$package /usr/doc/$package
 
11
        fi
 
12
 
 
13
        ;;
 
14
esac