summaryrefslogtreecommitdiff
path: root/run/dvdomatic-osx
diff options
context:
space:
mode:
Diffstat (limited to 'run/dvdomatic-osx')
-rwxr-xr-xrun/dvdomatic-osx15
1 files changed, 0 insertions, 15 deletions
diff --git a/run/dvdomatic-osx b/run/dvdomatic-osx
deleted file mode 100755
index 8fef27fec..000000000
--- a/run/dvdomatic-osx
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:build/src/lib:build/src:/Users/carl/Environments/osx/64/lib
-if [ "$1" == "--debug" ]; then
- shift
- gdb --args build/src/tools/dvdomatic "$*"
-elif [ "$1" == "--valgrind" ]; then
- shift
- valgrind --tool="memcheck" build/src/tools/dvdomatic $*
-elif [ "$1" == "--i18n" ]; then
- shift
- LANGUAGE=fr_FR.UTF8 LANG=fr_FR.UTF8 build/src/tools/dvdomatic "$*"
-else
- build/src/tools/dvdomatic "$*"
-fi