From: Chris Hanson <org/chris-hanson/cph>
Date: Tue, 29 Jan 2002 20:49:56 +0000 (+0000)
Subject: Use SCHEME_COMPILER variable to allow end-user override.
X-Git-Tag: 20090517-FFI~2278
X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=50e4ba4ba7b976d9957886b37d9f28fbb5b90760;p=mit-scheme.git

Use SCHEME_COMPILER variable to allow end-user override.
---

diff --git a/v7/src/microcode/utabmd.sh b/v7/src/microcode/utabmd.sh
index a70929aff..6ebe8be7f 100755
--- a/v7/src/microcode/utabmd.sh
+++ b/v7/src/microcode/utabmd.sh
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $Id: utabmd.sh,v 1.1 2002/01/29 20:42:57 cph Exp $
+# $Id: utabmd.sh,v 1.2 2002/01/29 20:49:56 cph Exp $
 #
 # Copyright (c) 2002 Massachusetts Institute of Technology
 #
@@ -22,4 +22,4 @@
 if [ -z "${SCHEME_COMPILER}" ]; then
     SCHEME_COMPILER="scheme -compiler"
 fi
-$(SCHEME_COMPILER) -eval '(sf "utabmd")' < /dev/null
+${SCHEME_COMPILER} -eval '(sf "utabmd")' < /dev/null