git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50687 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			16 lines
		
	
	
		
			285 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			285 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
WXPYTHONDIR="=WXPYDIR"
 | 
						|
PYVERS="=PYVERS"
 | 
						|
 | 
						|
for PY in $PYVERS; do
 | 
						|
    update-alternatives --install /usr/lib/python$PY/site-packages/wx.pth  \
 | 
						|
	wx-python$PY.pth	                                           \
 | 
						|
	/usr/lib/wx/python$PY/wx=V.pth       =PRIO
 | 
						|
done
 | 
						|
 | 
						|
#DEBHELPER#
 | 
						|
 |