| 1 | #!/bin/sh |
| 2 | |
| 3 | set -e |
| 4 | |
| 5 | PACKAGE="python-wxgtk=V-dbg" |
| 6 | dpkg --listfiles $PACKAGE | awk '$0~/\.py$/ {print $0"c\n" $0"o"}' | xargs rm -f >&2 |
| 7 | |
| 8 | for PY in =PYVERS; do |
| 9 | update-alternatives --remove wx.pth /usr/lib/wx/$PY/wx=V-dbg.pth |
| 10 | done |
| 11 | |
| 12 | #DEBHELPER# |
| 13 | |