From 0aa95ab0ad2750a62ca248d0154b9b9f80f11de8 Mon Sep 17 00:00:00 2001 From: Lluis Sanchez Date: Tue, 4 Dec 2007 10:49:22 +0000 Subject: Directory reorganization svn path=/branches/monodevelop/reorg/; revision=90637 --- main/mdtool.in | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 main/mdtool.in (limited to 'main/mdtool.in') diff --git a/main/mdtool.in b/main/mdtool.in new file mode 100644 index 0000000000..e9659657d5 --- /dev/null +++ b/main/mdtool.in @@ -0,0 +1,50 @@ +#!/bin/sh + +reWrite() { + ret="" + WD=`pwd` + for arg in $* + do + if [ -f ./$arg ] + then + ret="$ret $WD/$arg" + else + ret="$ret $arg" + fi + done + + echo "$ret" +} + +MD_BIN_PATH=@prefix@/lib/monodevelop/bin + +if [ -n $PKG_CONFIG_PATH ]; then + export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:@gtksharp_prefix@/lib/pkgconfig/ +else + export PKG_CONFIG_PATH=@gtksharp_prefix@/lib/pkgconfig/ +fi + +ARGS=`reWrite "$@"` +set -- $ARGS + +case x$1 in + x--profile) + shift + exec @RUNTIME@ --profile $MD_BIN_PATH/mdrun.exe $@ + exit 0 + ;; + x--debug) + shift + export MONODEVELOP_DISPATCH_DEBUG=yes + exec @RUNTIME@ --debug $MD_BIN_PATH/mdrun.exe $@ + exit 0 + ;; + x--trace) + shift + exec @RUNTIME@ --trace $MD_BIN_PATH/mdrun.exe $@ + exit 0; + ;; +esac + +exec @RUNTIME@ $MD_BIN_PATH/mdrun.exe $@ + -- cgit v1.2.3