minimal Poly/ML startup script;
authorwenzelm
Sat, 21 Nov 2009 16:07:58 +0100
changeset 33833 c38c2a1883e7
parent 33832 cff42395c246
child 33834 7c06e19f717c
minimal Poly/ML startup script;
Admin/polyml/polyml
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Admin/polyml/polyml	Sat Nov 21 16:07:58 2009 +0100
@@ -0,0 +1,11 @@
+#!/usr/bin/env bash
+#
+# Minimal Poly/ML startup script
+
+THIS="$(cd "$(dirname "$0")"; pwd)"
+
+export LD_LIBRARY_PATH="$THIS:$LD_LIBRARY_PATH"
+export DYLD_LIBRARY_PATH="$THIS:$DYLD_LIBRARY_PATH"
+
+exec "$THIS/poly" "$@"
+