summaryrefslogtreecommitdiffstats
path: root/debian/python-scons.postinst
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-04-24 12:51:00 (GMT)
committerSteven Knight <knight@baldmt.com>2002-04-24 12:51:00 (GMT)
commit7eddfeb87f28c4cf8ba6839efdad8b366214ec01 (patch)
tree5687008a55ac5282705d8800a9f955c8bc3cafa1 /debian/python-scons.postinst
parent35f863c494e66e1524789ac329a6e9aff5f46189 (diff)
downloadSCons-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.postinst27
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