From: Chris Hanson Date: Thu, 7 Dec 2000 23:08:49 +0000 (+0000) Subject: Fix typo in previous change. X-Git-Tag: 20090517-FFI~3101 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=bb8e6969ca6822cd5848efd6a44b016daacfba4c;p=mit-scheme.git Fix typo in previous change. --- diff --git a/v7/src/runtime-check/Makefile b/v7/src/runtime-check/Makefile index 0a7f661c5..ecd36dd1e 100644 --- a/v7/src/runtime-check/Makefile +++ b/v7/src/runtime-check/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 2000/12/07 23:04:36 cph Exp $ +# $Id: Makefile,v 1.2 2000/12/07 23:08:49 cph Exp $ # # Copyright (c) 2000 Massachusetts Institute of Technology # @@ -29,16 +29,16 @@ all: setup: (cd ../runtime; \ for FNS in *.scm; do \ - FN="`basename ${FNS} .scm`.bin"; \ - if test ! -e ../runtime-check/${FN}; then \ - echo "ln -s ../runtime/${FN} ../runtime-check/${FN}"; \ - ln -s ../runtime/${FN} ../runtime-check/${FN}; \ + FN="`basename $${FNS} .scm`.bin"; \ + if test ! -e ../runtime-check/$${FN}; then \ + echo "ln -s ../runtime/$${FN} ../runtime-check/$${FN}"; \ + ln -s ../runtime/$${FN} ../runtime-check/$${FN}; \ fi; \ done; \ for FN in runtime.bco runtime.bld; do \ - if test ! -e ../runtime-check/${FN}; then \ - echo "ln -s ../runtime/${FN} ../runtime-check/${FN}"; \ - ln -s ../runtime/${FN} ../runtime-check/${FN}; \ + if test ! -e ../runtime-check/$${FN}; then \ + echo "ln -s ../runtime/$${FN} ../runtime-check/$${FN}"; \ + ln -s ../runtime/$${FN} ../runtime-check/$${FN}; \ fi; \ done)