diff options
Diffstat (limited to 'math/dislin/files/dislin-wrapper.sh')
-rw-r--r-- | math/dislin/files/dislin-wrapper.sh | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/math/dislin/files/dislin-wrapper.sh b/math/dislin/files/dislin-wrapper.sh deleted file mode 100644 index 3292b671be6a..000000000000 --- a/math/dislin/files/dislin-wrapper.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh -# -# Wrapper script for DISLIN binaries. -# -# $FreeBSD$ -# - -DISLIN=%%DISLIN_DIR%% -export DISLIN - -self="${0##*/}" -program="${DISLIN}/bin/${self}" - -if [ -x "${program}" ] ; then - exec "${program}" "$@" -else - echo "${self} does not seem to exist." 1>&2 - exit 1 -fi |