aboutsummaryrefslogtreecommitdiffstats
path: root/debian/ethereal-dev.postinst
blob: ec629da3f9f5dca2b3bf02241bdf37bff1b52d67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /bin/sh -e

PYTHON=python2.2

case "$1" in
	configure|abort-upgrade|abort-remove|abort-deconfigure)
		/usr/bin/$PYTHON -O /usr/lib/$PYTHON/compileall.py -q \
			/usr/lib/$PYTHON/site-packages/
	;;
	*)
		echo "postinst called with unknown argument \`$1'" >&2
		exit 1
	;;
esac

#DEBHELPER#

exit 0