Use "--" form for command-line arguments.
authorChris Hanson <org/chris-hanson/cph>
Wed, 12 Feb 2003 19:42:33 +0000 (19:42 +0000)
committerChris Hanson <org/chris-hanson/cph>
Wed, 12 Feb 2003 19:42:33 +0000 (19:42 +0000)
v7/src/etc/build-bands.sh
v7/src/microcode/utabmd.sh

index 3935fcdbec8c5d0b73428f09c6dc95699bc9e403..7a91060788ea6e8d6f6751ba4b6976b416dfaf23 100755 (executable)
@@ -1,8 +1,8 @@
 #!/bin/sh
 #
-# $Id: build-bands.sh,v 1.2 2002/11/20 19:46:05 cph Exp $
+# $Id: build-bands.sh,v 1.3 2003/02/12 19:42:33 cph Exp $
 #
-# Copyright (c) 2000 Massachusetts Institute of Technology
+# Copyright 2000,2003 Massachusetts Institute of Technology
 #
 # This file is part of MIT Scheme.
 #
 
 (
     cd runtime
-    ../microcode/scheme -library ../lib -fasl make.com <<EOF
+    ../microcode/scheme --library ../lib --fasl make.com <<EOF
 (disk-save "../lib/runtime.com")
 EOF
 )
 
-microcode/scheme -library lib -large <<EOF
+microcode/scheme --library lib --large <<EOF
 (load-option 'SF)
 (load-option 'COMPILER)
 (disk-save "lib/compiler.com")
 EOF
 
-microcode/scheme -library lib -compiler <<EOF
+microcode/scheme --library lib --compiler <<EOF
 (load-option 'EDWIN)
 (disk-save "lib/all.com")
 EOF
 
-microcode/scheme -library lib -large <<EOF
+microcode/scheme --library lib --large <<EOF
 (load-option 'EDWIN)
 (disk-save "lib/edwin.com")
 EOF
 
 (
     cd runtime-check
-    ../microcode/scheme -library ../lib -fasl make.com <<EOF
+    ../microcode/scheme --library ../lib --fasl make.com <<EOF
 (load-option 'EDWIN)
 (load-option 'STUDENT)
 (disk-save "../lib/6001.com")
index 1793e01530c1e92620305b9e2f41df3c64ad5dd1..ef48ad14ceed083dd397928a2e2a7512560517d5 100755 (executable)
@@ -1,8 +1,8 @@
 #!/bin/sh
 #
-# $Id: utabmd.sh,v 1.3 2002/11/20 19:46:15 cph Exp $
+# $Id: utabmd.sh,v 1.4 2003/02/12 19:42:17 cph Exp $
 #
-# Copyright (c) 2002 Massachusetts Institute of Technology
+# Copyright 2002,2003 Massachusetts Institute of Technology
 #
 # This file is part of MIT Scheme.
 #
@@ -22,6 +22,6 @@
 # 02111-1307, USA.
 
 if [ -z "${SCHEME_COMPILER}" ]; then
-    SCHEME_COMPILER="scheme -compiler"
+    SCHEME_COMPILER="scheme --compiler"
 fi
-${SCHEME_COMPILER} -eval '(sf "utabmd")' < /dev/null
+${SCHEME_COMPILER} --eval '(sf "utabmd")' < /dev/null