diff options
author | Steven Knight <knight@baldmt.com> | 2002-04-24 12:51:00 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-04-24 12:51:00 (GMT) |
commit | 7eddfeb87f28c4cf8ba6839efdad8b366214ec01 (patch) | |
tree | 5687008a55ac5282705d8800a9f955c8bc3cafa1 /debian/python-scons.postinst | |
parent | 35f863c494e66e1524789ac329a6e9aff5f46189 (diff) | |
download | SCons-7eddfeb87f28c4cf8ba6839efdad8b366214ec01.zip SCons-7eddfeb87f28c4cf8ba6839efdad8b366214ec01.tar.gz SCons-7eddfeb87f28c4cf8ba6839efdad8b366214ec01.tar.bz2 |
Rework Debian packaging ito incorporate changes from Moshe Zadka, official Debian SCons package maintainer.
Diffstat (limited to 'debian/python-scons.postinst')
-rw-r--r-- | debian/python-scons.postinst | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/debian/python-scons.postinst b/debian/python-scons.postinst deleted file mode 100644 index 362860a..0000000 --- a/debian/python-scons.postinst +++ /dev/null @@ -1,27 +0,0 @@ -#! /bin/sh -e -# -# postinst script for Debian python2 packages. -# Written 1998 by Gregor Hoffleit <flight@debian.org>. -# Modified for SCons 2001 by Anthony Roach <aroach@electriceyeball.com>. -# - -PACKAGE=python-scons -DIRLIST="/usr/lib/python1.5/site-packages/SCons" - -case "$1" in - configure|abort-upgrade|abort-remove|abort-deconfigure) - for i in $DIRLIST ; do - python2 -O /usr/lib/python1.5/compileall.py -q $i - python2 /usr/lib/python1.5/compileall.py -q $i - done - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -#DEBHELPER# - -exit 0 |