summaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-04-09 23:43:00 +0100
committerCarl Hetherington <cth@carlh.net>2013-04-09 23:43:00 +0100
commitb66010a281acd3e3e58ef7202bce55023fc29d7f (patch)
treee23ee83991adef3577caf8dd605f5ce06d00704c /run
parente94cd129dcd66a76210880bfdf19d27f7992651b (diff)
Merge ImageMagick and FFmpeg content into VideoContent list; remove seek_to_last hacks.
Diffstat (limited to 'run')
-rwxr-xr-xrun/dvdomatic4
1 files changed, 2 insertions, 2 deletions
diff --git a/run/dvdomatic b/run/dvdomatic
index 147c001cd..dbc63d44a 100755
--- a/run/dvdomatic
+++ b/run/dvdomatic
@@ -3,7 +3,7 @@
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 $*
@@ -11,5 +11,5 @@ elif [ "$1" == "--i18n" ]; then
shift
LANGUAGE=fr_FR.UTF8 LANG=fr_FR.UTF8 build/src/tools/dvdomatic "$*"
else
- build/src/tools/dvdomatic "$*"
+ build/src/tools/dvdomatic $*
fi