summaryrefslogtreecommitdiff
path: root/run/dvdomatic
diff options
context:
space:
mode:
Diffstat (limited to 'run/dvdomatic')
-rwxr-xr-xrun/dvdomatic6
1 files changed, 3 insertions, 3 deletions
diff --git a/run/dvdomatic b/run/dvdomatic
index 125fd9d27..70906a254 100755
--- a/run/dvdomatic
+++ b/run/dvdomatic
@@ -3,10 +3,10 @@
export LD_LIBRARY_PATH=build/src/lib:build/src/wx:build/src/asdcplib/src:$LD_LIBRARY_PATH
if [ "$1" == "--debug" ]; then
shift
- gdb --args build/src/tools/dvdomatic "$1"
+ gdb --args build/src/tools/dvdomatic $*
elif [ "$1" == "--valgrind" ]; then
shift
- valgrind --tool="memcheck" build/src/tools/dvdomatic "$1"
+ valgrind --tool="memcheck" build/src/tools/dvdomatic $*
else
- build/src/tools/dvdomatic "$1"
+ build/src/tools/dvdomatic $*
fi