From bb8e6969ca6822cd5848efd6a44b016daacfba4c Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Thu, 7 Dec 2000 23:08:49 +0000 Subject: [PATCH] Fix typo in previous change. --- v7/src/runtime-check/Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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) -- 2.25.1