forked from mia/Aegisub
167f09a610
Originally committed to SVN as r5126.
17 lines
238 B
Bash
Executable file
17 lines
238 B
Bash
Executable file
#!/bin/sh
|
|
BIN="aegisub-3.0"
|
|
|
|
if ! test -x ${BIN}; then
|
|
echo "${BIN} does not exist";
|
|
exit 1;
|
|
fi
|
|
|
|
case "$1" in
|
|
"gdb")
|
|
LD_LIBRARY_PATH="../libaegisub" exec gdb ./${BIN}
|
|
;;
|
|
*)
|
|
LD_LIBRARY_PATH="../libaegisub" exec ./${BIN}
|
|
;;
|
|
esac
|
|
|