This fixes the problem that we can't get the python path using
sys.executable.
This commit is contained in:
parent
34d7aacdf8
commit
f15ec68ae9
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/bin/sh
|
||||||
if [[ $0 == /* ]]; then
|
if [[ $0 == /* ]]; then
|
||||||
BASE=`dirname $0`
|
BASE=`dirname $0`
|
||||||
else
|
else
|
||||||
|
@ -15,4 +15,4 @@ if [ "x${OS}" == "xDarwin" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd ${BASE}/src
|
cd ${BASE}/src
|
||||||
exec -a gajim python -t gajim.py $@
|
exec python2.5 -t gajim.py $@
|
||||||
|
|
Loading…
Reference in New Issue