Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjs <js-gajim@webkeks.org>2008-08-14 18:02:18 +0400
committerjs <js-gajim@webkeks.org>2008-08-14 18:02:18 +0400
commitf15ec68ae900b83f15f6bf6883981eaff1cae6c1 (patch)
tree003c4890a7f63b6ec727b5946e082588bc653d8d
parent34d7aacdf8860c36d982e34c1214b6c0f075622d (diff)
This fixes the problem that we can't get the python path using
sys.executable.
-rwxr-xr-xlaunch.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/launch.sh b/launch.sh
index cfaf9cd68..2a3dcd8a2 100755
--- a/launch.sh
+++ b/launch.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
if [[ $0 == /* ]]; then
BASE=`dirname $0`
else
@@ -15,4 +15,4 @@ if [ "x${OS}" == "xDarwin" ]; then
fi
cd ${BASE}/src
-exec -a gajim python -t gajim.py $@
+exec python2.5 -t gajim.py $@