mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
12 lines
185 B
Bash
Executable File
12 lines
185 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)/pyuic4-wrapper.py $@
|