]> git.donarmstrong.com Git - debhelper.git/blob - autoscripts/prerm-python
r565: * Various minor changes based on suggestions by luca.
[debhelper.git] / autoscripts / prerm-python
1 if [ "$1" = remove ]; then
2         dpkg -L #PACKAGE# |
3                 awk '$0~/\.py$/ {print $0"c\n" $0"o"}' |
4                 xargs rm -f >&2
5 fi