proper treatment of RAW bootstrap session;
authorwenzelm
Sun, 03 Jan 2016 21:31:57 +0100
changeset 62047 1ae53588dcbb
parent 62046 2c9f68fbf047
child 62048 fefd79f6b232
proper treatment of RAW bootstrap session;
lib/Tools/console
--- a/lib/Tools/console	Sun Jan 03 17:19:47 2016 +0100
+++ b/lib/Tools/console	Sun Jan 03 21:31:57 2016 +0100
@@ -44,7 +44,7 @@
 
 # options
 
-declare -a ISABELLE_OPTIONS=(-m ASCII)
+declare -a ISABELLE_OPTIONS=()
 
 declare -a INCLUDE_DIRS=()
 LOGIC="$ISABELLE_LOGIC"
@@ -104,6 +104,11 @@
   exit "$?"
 }
 
+if [ "$LOGIC" != "RAW" ]; then
+  ISABELLE_OPTIONS["${#ISABELLE_OPTIONS[@]}"]="-m"
+  ISABELLE_OPTIONS["${#ISABELLE_OPTIONS[@]}"]="ASCII"
+fi
+
 ISABELLE_OPTIONS["${#ISABELLE_OPTIONS[@]}"]="-O"
 ISABELLE_OPTIONS["${#ISABELLE_OPTIONS[@]}"]="$OPTIONS_FILE"