git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6259 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			15 lines
		
	
	
		
			256 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			256 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
WXPYTHONDIR="/usr/lib/python1.5/site-packages/wxPython"
 | 
						|
 | 
						|
if [ "$1" = "configure" ]; then
 | 
						|
	python /usr/lib/python1.5/compileall.py -q ${WXPYTHONDIR}
 | 
						|
	python -O /usr/lib/python1.5/compileall.py -q ${WXPYTHONDIR}
 | 
						|
	ldconfig
 | 
						|
fi
 | 
						|
 | 
						|
#DEBHELPER#
 | 
						|
 |