diff options
Diffstat (limited to 'debian/scons.postinst')
-rw-r--r-- | debian/scons.postinst | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/debian/scons.postinst b/debian/scons.postinst deleted file mode 100644 index 7dd248d..0000000 --- a/debian/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=scons -DIRLIST="/usr/lib/scons-0.07" - -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 |