summaryrefslogtreecommitdiff
path: root/scripts/wrapper.in
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/wrapper.in')
-rw-r--r--scripts/wrapper.in20
1 files changed, 0 insertions, 20 deletions
diff --git a/scripts/wrapper.in b/scripts/wrapper.in
deleted file mode 100644
index b4dfc97..0000000
--- a/scripts/wrapper.in
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-# this wrapper will not work under BSD systems or others
-# not containig the GNU readlink.
-# Under those, wrapper.c will forcibly be used
-# regardless of the config file setting.
-
-canonicalizedname=$(readlink -nm "${0}")
-dirname="$(dirname "${canonicalizedname}")"
-basename="$(basename "${canonicalizedname}")"
-
-ld_lib_path="$(dirname "${dirname}")/lib"
-
-case ":${LD_LIBRARY_PATH}:" in
- *":${ld_lib_path}:"*) ;;
- *) LD_LIBRARY_PATH="${ld_lib_path}${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}";;
-esac
-
-export LD_LIBRARY_PATH
-exec "${dirname}/.${basename}" "$@"