mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-11-04 00:04:25 -05:00 
			
		
		
		
	* pyqtwrappers update (add QtNetwork, QtXml, QtSql, QtTest, uic) * 2to3 updates * move QPyNullVariant/NULL to PyQt.QtCore * add global unicode/basestring/long for Python3 * expand QtGui, QtCore module and star exports * Qscintilla2 * replace Set import with set builtin
		
			
				
	
	
		
			12 lines
		
	
	
		
			184 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			184 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
PYUIC4=$1
 | 
						|
LD_LIBRARY_PATH=$2:$LD_LIBRARY_PATH
 | 
						|
PYTHONPATH=$3:$PYTHONPATH
 | 
						|
PYTHON=$4
 | 
						|
shift 4
 | 
						|
 | 
						|
export LD_LIBRARY_PATH PYTHONPATH
 | 
						|
 | 
						|
exec $PYTHON $(dirname $0)/pyuic-wrapper.py $@
 |