summaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-12-06 21:40:56 +0000
committerCarl Hetherington <cth@carlh.net>2012-12-06 21:40:56 +0000
commitb4ec9ce787c63b27c96c404b1bd44eccd56ab16e (patch)
tree8a8b203ef1a8483961ed8a043b555bffdfa8314c /run
parent1e0f726e313638f7748e72545d0038cfcffde229 (diff)
More logging tweaks; allow log level to be specified on the command line; bump libdcp version.
Diffstat (limited to 'run')
-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