summaryrefslogtreecommitdiff
path: root/run/dcpomatic_kdm
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-10-06 10:41:47 +0100
committerCarl Hetherington <cth@carlh.net>2015-10-09 13:44:49 +0100
commit5892c7e3bd9f9ef2e6d7d0c73433cf33b11684cf (patch)
tree0a1430892a495f1a090fd68d0b9616e3ff7b2ba7 /run/dcpomatic_kdm
parent22917c031a262ce6e90252a65d6f70a340fafbed (diff)
Rename dcpomatic_kdm -> dcpomatic_kdm_cli.
Diffstat (limited to 'run/dcpomatic_kdm')
-rwxr-xr-xrun/dcpomatic_kdm12
1 files changed, 0 insertions, 12 deletions
diff --git a/run/dcpomatic_kdm b/run/dcpomatic_kdm
deleted file mode 100755
index faad61018..000000000
--- a/run/dcpomatic_kdm
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/bash
-
-export LD_LIBRARY_PATH=build/src/lib:$LD_LIBRARY_PATH:build/src
-if [ "$1" == "--debug" ]; then
- shift
- gdb --args build/src/tools/dcpomatic_kdm "$@"
-elif [ "$1" == "--valgrind" ]; then
- shift
- valgrind --tool="memcheck" --leak-check=full --show-reachable=yes build/src/tools/dcpomatic_kdm "$@"
-else
- build/src/tools/dcpomatic_kdm "$@"
-fi