#!/bin/sh # # sid wrapper script # # $TenDRA: tendra/src/wrappers/common.sh,v 1.2 2003/08/25 06:34:47 nonce Exp $ # # TenDRA settings TENDRA_BASEDIR="/usr/local/lib/TenDRA" TENDRA_VERSION="5.0.0" # binary settings BIN_RUN="${TENDRA_BASEDIR}/bin/sid" OPTS_DEFAULT="" # Execute sid with our compiled options. if [ -n "$DEBUG" ]; then /bin/echo ${BIN_RUN} ${OPTS_DEFAULT} ${@+"$@"} else ${BIN_RUN} ${OPTS_DEFAULT} ${@+"$@"} fi;