Fix shell-script style issues.
authorChris Hanson <org/chris-hanson/cph>
Sun, 11 Mar 2012 08:43:48 +0000 (00:43 -0800)
committerChris Hanson <org/chris-hanson/cph>
Sun, 11 Mar 2012 08:43:48 +0000 (00:43 -0800)
src/etc/build-bands.sh
src/etc/compile-boot-compiler.sh
src/etc/compile-svm.sh
src/etc/compile.sh

index 333c6f51daea3c5d82d6a2fe2d238fba6bc509a7..98a4b802964f2a4d89f67e5601a3fe1c5e223262 100755 (executable)
@@ -29,7 +29,7 @@ set -e
 if [ ! -e lib/runtime.com ]; then
   get_fasl_file
   run_cmd_in_dir runtime \
-       ../microcode/scheme --batch-mode --library ../lib --fasl $FASL <<EOF
+       ../microcode/scheme --batch-mode --library ../lib --fasl "${FASL}" <<EOF
 (disk-save "../lib/runtime.com")
 EOF
 fi
index 9ecbc7e15e774c0353dd9485bccc777fa8065873..25e5f4e3da21d44490a5026d2e11897d8cc4c0ef 100755 (executable)
@@ -41,7 +41,8 @@ run_cmd "${EXE}" --batch-mode <<EOF
 EOF
 
 get_fasl_file
-run_cmd_in_dir runtime "${EXE}" --batch-mode --library ../lib --fasl $FASL <<EOF
+run_cmd_in_dir runtime "${EXE}" --batch-mode --library ../lib \
+    --fasl "${FASL}" <<EOF
 (disk-save "../lib/x-runtime.com")
 EOF
 echo ""
index 9f1e49af9bc5216b74d9d8493d32723c63bfd0d6..36b1877455267b0aac9b217f080018c577cd5024 100755 (executable)
@@ -43,19 +43,19 @@ echo "# `date`: Re-compile the cross-compiler."
 
 echo "# `date`:    Re-syntax prerequisites."
 for DIR in runtime sf cref; do
-    run_cmd_in_dir $DIR "${@}" --batch-mode --load $DIR.sf </dev/null
+    run_cmd_in_dir ${DIR} "${@}" --batch-mode --load ${DIR}.sf </dev/null
 done
 
 echo "# `date`:    Re-compile prerequisites."
 for DIR in runtime sf cref; do
-    run_cmd_in_dir $DIR "${@}" --batch-mode --load $DIR.cbf </dev/null
+    run_cmd_in_dir ${DIR} "${@}" --batch-mode --load ${DIR}.cbf </dev/null
 done
 run_cmd_in_dir star-parser "${@}" --batch-mode --load compile.scm </dev/null
 
 echo "# `date`:    Dump new runtime into x-runtime.com."
 get_fasl_file
 run_cmd_in_dir runtime \
-    "${@}" --batch-mode --library ../lib --fasl $FASL <<EOF
+    "${@}" --batch-mode --library ../lib --fasl "${FASL}" <<EOF
 (disk-save "../lib/x-runtime.com")
 EOF
 echo ""
@@ -94,7 +94,7 @@ echo "# `date`: Restore previously cross-compiled code."
 # rebuilt cross-compiler.)
 run_cmd ./Stage.sh unmake 0
 
-if [ "$FAST" ]; then
+if [ "${FAST}" ]; then
 
     # Use the host-compiled cross-compiler to compile everything.  If
     # the host system is native, this will be much faster than using the
@@ -108,7 +108,7 @@ if [ "$FAST" ]; then
 
     echo "# `date`: Re-cross-compile everything."
     run_cmd "${@}" --batch-mode --library lib \
-                  --band x-compiler.com --heap $HEAP <<EOF
+                  --band x-compiler.com --heap ${HEAP} <<EOF
 (begin
   (load "etc/compile")
   (fluid-let ((compiler:generate-lap-files? #t)
@@ -141,7 +141,7 @@ HEAP=9000
 
 echo "# `date`: Re-cross-compile boot-dirs."
 run_cmd "${@}" --batch-mode --library lib \
-    --band x-compiler.com --heap $HEAP <<EOF
+    --band x-compiler.com --heap ${HEAP} <<EOF
 (begin
   (load "etc/compile")
   (fluid-let ((compiler:generate-lap-files? #f)
@@ -160,7 +160,7 @@ EOF
 
 echo "# `date`: Dump new compiler into boot-compiler.com."
 run_cmd_in_dir runtime \
-    ../microcode/scheme --batch-mode --library ../lib --fasl $FASL <<EOF
+    ../microcode/scheme --batch-mode --library ../lib --fasl "${FASL}" <<EOF
 (begin
   (disk-save "../lib/boot-runtime.com")
   (load-option 'SF)
@@ -174,7 +174,7 @@ run_cmd ./Stage.sh make-cross 0
 
 echo "# `date`: Use the new machine and compiler to re-compile everything."
 run_cmd ./microcode/scheme --batch-mode --library lib \
-    --band boot-compiler.com --heap $HEAP <<EOF
+    --band boot-compiler.com --heap ${HEAP} <<EOF
 (begin
   (load "etc/compile")
   (fluid-let ((compiler:generate-lap-files? #f)
index 51d0e49426f4cb54889fb64f4075a6fc138592b5..2056b609b2e48e69f3d0822bc5026514dcb3560c 100755 (executable)
@@ -26,7 +26,7 @@ set -e
 
 . etc/functions.sh
 
-run_cmd "${@}"<<EOF
+run_cmd "${@}" <<EOF
 (begin
   (load "etc/compile.scm")
   (compile-cref compile-dir)
@@ -35,7 +35,7 @@ EOF
 
 get_fasl_file
 run_cmd_in_dir runtime ../microcode/scheme --batch-mode                \
-       --library ../lib --fasl $FASL <<EOF
+       --library ../lib --fasl "${FASL}" <<EOF
 (disk-save "../lib/runtime.com")
 EOF
 
@@ -47,7 +47,7 @@ run_cmd ./microcode/scheme --batch-mode --library lib --band runtime.com <<EOF
     (lambda () (load "compiler.sf"))))
 EOF
 
-run_cmd "${@}"<<EOF
+run_cmd "${@}" <<EOF
 (with-working-directory-pathname "compiler/"
   (lambda () (load "compiler.cbf")))
 EOF