Fully POSIX-compliant shell scripts.

This commit is contained in:
js 2008-08-14 19:17:53 +00:00
parent 8043bb9fb2
commit 7944990a1b
3 changed files with 5 additions and 18 deletions

View File

@ -1,18 +1,3 @@
#!/bin/sh
if [[ $0 == /* ]]; then
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
cd "$(dirname $0)/src"
exec python -t gajim.py $@

View File

@ -24,8 +24,9 @@
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## 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"
exit 1
fi
datadir=@DATADIR@

View File

@ -23,8 +23,9 @@
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## 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"
exit 1
fi
datadir=@DATADIR@