git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50687 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			14 lines
		
	
	
		
			244 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			244 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
PACKAGE="python-wxgtk=V-dbg"
 | 
						|
dpkg --listfiles $PACKAGE | awk '$0~/\.py$/ {print $0"c\n" $0"o"}' | xargs rm -f >&2
 | 
						|
 | 
						|
for PY in =PYVERS; do
 | 
						|
    update-alternatives --remove wx.pth /usr/lib/wx/$PY/wx=V-dbg.pth
 | 
						|
done
 | 
						|
 | 
						|
#DEBHELPER#
 | 
						|
 |