summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-07-24 00:30:07 +0100
committerCarl Hetherington <cth@carlh.net>2015-07-24 00:30:07 +0100
commit97d22daa4bbfb421a7983eaf6efd552dcb4d3603 (patch)
tree3fb655e3b2ccae4153f4730469ad5baae788281a
parentbcf817949c2e0157f39933720937e7b40390e5ad (diff)
Fix run/dcpomatic_batch script to work again.
-rwxr-xr-xrun/dcpomatic_batch12
1 files changed, 6 insertions, 6 deletions
diff --git a/run/dcpomatic_batch b/run/dcpomatic_batch
index 80cf5291c..6a8207c14 100755
--- a/run/dcpomatic_batch
+++ b/run/dcpomatic_batch
@@ -3,19 +3,19 @@
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_batch $*
+ gdb --args build/src/tools/dcpomatic2_batch $*
elif [ "$1" == "--valgrind" ]; then
shift
- valgrind --tool="memcheck" --suppressions=valgrind.supp --leak-check=full --show-reachable=yes build/src/tools/dcpomatic_batch $*
+ valgrind --tool="memcheck" --suppressions=valgrind.supp --leak-check=full --show-reachable=yes build/src/tools/dcpomatic2_batch $*
elif [ "$1" == "--massif" ]; then
shift
- valgrind --tool="massif" build/src/tools/dcpomatic_batch $*
+ valgrind --tool="massif" build/src/tools/dcpomatic2_batch $*
elif [ "$1" == "--callgrind" ]; then
shift
- valgrind --tool="callgrind" build/src/tools/dcpomatic_batch $*
+ valgrind --tool="callgrind" build/src/tools/dcpomatic2_batch $*
elif [ "$1" == "--i18n" ]; then
shift
- LANGUAGE=fr_FR.UTF8 LANG=fr_FR.UTF8 LC_ALL=fr_FR.UTF8 build/src/tools/dcpomatic_batch "$*"
+ LANGUAGE=fr_FR.UTF8 LANG=fr_FR.UTF8 LC_ALL=fr_FR.UTF8 build/src/tools/dcpomatic2_batch "$*"
else
- build/src/tools/dcpomatic_batch $*
+ build/src/tools/dcpomatic2_batch $*
fi