Make run.sh work regardless of $PWD.

Originally committed to SVN as r6893.
This commit is contained in:
cantabile 2012-06-12 02:59:35 +00:00 committed by Thomas Goyne
parent 03b1b8e1c0
commit acea3a04e0
1 changed files with 8 additions and 8 deletions

View File

@ -1,17 +1,17 @@
#!/bin/sh
BIN="aegisub-3.0"
BINDIR="$(dirname "$0")"
BIN="$BINDIR/aegisub-3.0"
LIBDIR="$BINDIR/../libaegisub"
if ! test -x ${BIN}; then
echo "${BIN} does not exist";
if ! test -x "${BIN}"; then
echo "${BIN} does not exist or is not executable.";
exit 1;
fi
case "$1" in
"gdb")
LD_LIBRARY_PATH="../libaegisub" exec gdb ./${BIN}
;;
*)
LD_LIBRARY_PATH="../libaegisub" exec ./${BIN}
;;
GDB="gdb"
;;
esac
LD_LIBRARY_PATH="$LIBDIR" exec $GDB "./$BIN"