Fully POSIX-compliant shell scripts.
This commit is contained in:
parent
8043bb9fb2
commit
7944990a1b
3 changed files with 5 additions and 18 deletions
17
launch.sh
17
launch.sh
|
@ -1,18 +1,3 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
if [[ $0 == /* ]]; then
|
cd "$(dirname $0)/src"
|
||||||
BASE=`dirname $0`
|
|
||||||
else
|
|
||||||
BASE=`pwd`/`dirname $0`
|
|
||||||
fi
|
|
||||||
OS=`uname -s`
|
|
||||||
|
|
||||||
if [ "x${OS}" == "xDarwin" ]; then
|
|
||||||
export RESOURCEPATH="${BASE}/dist/Gajim.app/Contents/Resources"
|
|
||||||
GTK_DIR="/Library/Frameworks/GTK+.framework/Versions/Current"
|
|
||||||
export PATH="${GTK_DIR}/bin:$PATH"
|
|
||||||
export PYTHONPATH="${GTK_DIR}/lib/python2.5/site-packages:${GTK_DIR}/lib/python2.5/site-packages/gtk-2.0:${PYTHONPATH}"
|
|
||||||
unset GTK_DIR
|
|
||||||
fi
|
|
||||||
|
|
||||||
cd ${BASE}/src
|
|
||||||
exec python -t gajim.py $@
|
exec python -t gajim.py $@
|
||||||
|
|
|
@ -24,8 +24,9 @@
|
||||||
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
## GNU General Public License for more details.
|
## GNU General Public License for more details.
|
||||||
|
|
||||||
if [ `id -u` -eq 0 ]; then
|
if test $(id -u) -eq 0; then
|
||||||
echo "You must not launch gajim-remote as root, it is INSECURE"
|
echo "You must not launch gajim-remote as root, it is INSECURE"
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
datadir=@DATADIR@
|
datadir=@DATADIR@
|
||||||
|
|
|
@ -23,8 +23,9 @@
|
||||||
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
## GNU General Public License for more details.
|
## GNU General Public License for more details.
|
||||||
|
|
||||||
if [ `id -u` -eq 0 ]; then
|
if test $(id -u) -eq 0; then
|
||||||
echo "You must not launch Gajim as root, it is INSECURE"
|
echo "You must not launch Gajim as root, it is INSECURE"
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
datadir=@DATADIR@
|
datadir=@DATADIR@
|
||||||
|
|
Loading…
Add table
Reference in a new issue