removed -c option;
authorwenzelm
Fri, 25 Apr 1997 15:18:58 +0200
changeset 3056 200565f7592a
parent 3055 5da4afa207ad
child 3057 a5a42ff18a40
removed -c option;
src/Pure/mk
--- a/src/Pure/mk	Fri Apr 25 15:10:52 1997 +0200
+++ b/src/Pure/mk	Fri Apr 25 15:18:58 1997 +0200
@@ -1,4 +1,4 @@
-#!/bin/bash -norc
+#!/bin/bash
 #
 # $Id$
 #
@@ -19,7 +19,8 @@
 ## main
 
 ML_SYSTEM_BASE=$(echo $ML_SYSTEM | cut -f1 -d-)
-[ -z "$ML_SYSTEM" ] && fail "Missing ML system settings! Probably not run via 'isatool make'?."
+[ -z "$ML_SYSTEM" ] && \
+  fail "Missing ML system settings! Probably not run via 'isatool make'?."
 
 COMPAT=""
 [ -f "ML-Systems/$ML_SYSTEM_BASE.ML" ] && COMPAT="ML-Systems/$ML_SYSTEM_BASE.ML"
@@ -29,6 +30,6 @@
 $ISABELLE \
   -e "val ml_system = \"$ML_SYSTEM\";" \
   -e "use\"$COMPAT\"; use\"ROOT.ML\" handle _ => exit 1;" \
-  -cq RAW_ML_SYSTEM Pure
+  -q RAW_ML_SYSTEM Pure
 
 chmod -w $ISABELLE_OUTPUT_DIR/Pure