Fixes #324960, enabling config.py to handle in tree builds without tainting build_options.py used for (later) install to some other location. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36405 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			12 lines
		
	
	
		
			208 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			208 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| set -e
 | |
| 
 | |
| PACKAGE="python-wxgtk=V"
 | |
| dpkg --listfiles $PACKAGE | awk '$0~/\.py$/ {print $0"c\n" $0"o"}' | xargs rm -f >&2
 | |
| 
 | |
| update-alternatives --remove wx.pth /usr/lib/wx/python/wx=V.pth
 | |
| 
 | |
| #DEBHELPER#
 | |
| 
 |