summaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-12-15 22:29:09 +0000
committerCarl Hetherington <cth@carlh.net>2012-12-15 22:29:09 +0000
commit8787bdd5b49150a46ca9ed554c06fd7caca98cce (patch)
tree2aea7ef6528b566ff6376c01ca98115002a74c40 /run
parentd95961e37e03f1060aa16cc0d6b0fe2fdbd4844d (diff)
Basic ffmpeg film viewer.
Diffstat (limited to 'run')
-rwxr-xr-xrun/dvdomatic4
1 files changed, 2 insertions, 2 deletions
diff --git a/run/dvdomatic b/run/dvdomatic
index 70906a254..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 $*
+ gdb --args build/src/tools/dvdomatic "$*"
elif [ "$1" == "--valgrind" ]; then
shift
valgrind --tool="memcheck" build/src/tools/dvdomatic $*
else
- build/src/tools/dvdomatic $*
+ build/src/tools/dvdomatic "$*"
fi