X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=run%2Fdvdomatic;h=ff38970646e168179858fa04977c8a2cf0ce3bfa;hb=bbd352c3a0acf312e66b8be0d8bfb475275102d6;hp=125fd9d27223f324de4899e2f1e15bc0537cba78;hpb=009a58293bf2e9727d544d1a2648422cc395d81e;p=dcpomatic.git diff --git a/run/dvdomatic b/run/dvdomatic index 125fd9d27..ff3897064 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