summaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-08-04 22:54:23 +0100
committerCarl Hetherington <cth@carlh.net>2015-08-04 22:54:23 +0100
commit99428af22969a6cfb1dbd2053a9356bb23b3182f (patch)
treec2df0c41cced153689ed59392a48356f4e367b77 /run
parent6d741ae13927b9715b1958fccad0246a1e27f934 (diff)
Add --standard option to dcpomatic_create
Diffstat (limited to 'run')
-rwxr-xr-xrun/dcpomatic_create10
1 files changed, 5 insertions, 5 deletions
diff --git a/run/dcpomatic_create b/run/dcpomatic_create
index bf3c3c493..63310315e 100755
--- a/run/dcpomatic_create
+++ b/run/dcpomatic_create
@@ -3,16 +3,16 @@
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/dcpomatic_create $*
+ gdb --args build/src/tools/dcpomatic2_create $*
elif [ "$1" == "--valgrind" ]; then
shift
- valgrind --tool="memcheck" build/src/tools/dcpomatic_create $*
+ valgrind --tool="memcheck" build/src/tools/dcpomatic2_create $*
elif [ "$1" == "--callgrind" ]; then
shift
- valgrind --tool="callgrind" build/src/tools/dcpomatic_create $*
+ valgrind --tool="callgrind" build/src/tools/dcpomatic2_create $*
elif [ "$1" == "--perf" ]; then
shift
- perf record build/src/tools/dcpomatic_create $*
+ perf record build/src/tools/dcpomatic2_create $*
else
- build/src/tools/dcpomatic_create $*
+ build/src/tools/dcpomatic2_create $*
fi