blob: e8c5de884c482c279f163cf90802d903f36f9b20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#! /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.03"
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
|