From 0b9ac2e17e86cc81ee513b31870c4475a4c1fcc4 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Wed, 6 Dec 2000 06:00:49 +0000 Subject: [PATCH] Fix typo. --- v7/src/compiler/configure | 4 ++-- v7/src/configure | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/v7/src/compiler/configure b/v7/src/compiler/configure index 915abe86e..6016e5fb8 100755 --- a/v7/src/compiler/configure +++ b/v7/src/compiler/configure @@ -1,6 +1,6 @@ #!/bin/sh -# $Id: configure,v 1.2 2000/12/06 05:12:33 cph Exp $ +# $Id: configure,v 1.3 2000/12/06 06:00:49 cph Exp $ # # Copyright (c) 2000 Massachusetts Institute of Technology # @@ -49,5 +49,5 @@ if test ! -f machine; then ln -s machines/${MACHINE} machine fi for FN in compiler.cbf compiler.pkg compiler.sf make.com; do \ - test -f $${FN} || ln -s machine/$${FN} .; \ + test -f ${FN} || ln -s machine/${FN} .; \ done diff --git a/v7/src/configure b/v7/src/configure index 646ab4d2e..a75e245ac 100755 --- a/v7/src/configure +++ b/v7/src/configure @@ -1,6 +1,6 @@ #!/bin/sh -# $Id: configure,v 1.2 2000/12/06 05:12:05 cph Exp $ +# $Id: configure,v 1.3 2000/12/06 05:59:24 cph Exp $ # # Copyright (c) 2000 Massachusetts Institute of Technology # @@ -18,7 +18,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -SUBDIRS=microcode compiler +SUBDIRS="microcode compiler" for SUBDIR in ${SUBDIRS}; do (cd ${SUBDIR} && ./configure) -- 2.25.1