2004-09-06 04:51:11 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2005-12-16 02:12:16 +00:00
|
|
|
PACKAGE="python-wxgtk=V-dbg"
|
2004-09-06 04:51:11 +00:00
|
|
|
dpkg --listfiles $PACKAGE | awk '$0~/\.py$/ {print $0"c\n" $0"o"}' | xargs rm -f >&2
|
|
|
|
|
2007-12-13 23:05:55 +00:00
|
|
|
for PY in =PYVERS; do
|
|
|
|
update-alternatives --remove wx.pth /usr/lib/wx/$PY/wx=V-dbg.pth
|
|
|
|
done
|
2005-12-16 02:12:16 +00:00
|
|
|
|
2004-09-06 04:51:11 +00:00
|
|
|
#DEBHELPER#
|
|
|
|
|