--- a/lib/scripts/run-smlnj Mon Nov 15 14:59:53 2010 +0100
+++ b/lib/scripts/run-smlnj Mon Nov 15 15:41:58 2010 +0100
@@ -9,19 +9,20 @@
## diagnostics
+function fail()
+{
+ echo "$1" >&2
+ exit 2
+}
+
function fail_out()
{
- echo "Unable to create output heap file: \"$OUTFILE\"" >&2
- exit 2
+ fail "Unable to create output heap file: \"$OUTFILE\""
}
function check_mlhome_file()
{
- if [ ! -f "$1" ]; then
- echo "Unable to locate $1" >&2
- echo "Please check your ML_HOME setting!" >&2
- exit 2
- fi
+ [ ! -f "$1" ] && fail "Unable to locate \"$1\""
}
function check_heap_file()
@@ -38,6 +39,8 @@
## compiler binaries
+[ -z "$ML_HOME" ] && fail "Missing ML installation (ML_HOME)"
+
SML="$ML_HOME/sml"
ARCH_N_OPSYS="$ML_HOME/.arch-n-opsys"