Link "make.com" even for liarc.
authorChris Hanson <org/chris-hanson/cph>
Thu, 3 May 2007 12:48:41 +0000 (12:48 +0000)
committerChris Hanson <org/chris-hanson/cph>
Thu, 3 May 2007 12:48:41 +0000 (12:48 +0000)
v7/src/compiler/configure

index c399cef9160e1db0d7ee2428572a9fb92b0422f6..bb70f43d95b86d357ded831f6f795fe00afe9c59 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-# $Id: configure,v 1.15 2007/05/03 03:35:36 cph Exp $
+# $Id: configure,v 1.16 2007/05/03 12:48:41 cph Exp $
 #
 # Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
 #     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
@@ -44,11 +44,11 @@ while test $# -gt 0; do
     esac
 done
 
-if test "x${MACHINE}" = x && test -f ../liarc.stamp; then
+if test x${MACHINE} = x && test -f ../liarc.stamp; then
     MACHINE=C
 fi
 
-if test "x${MACHINE}" = x; then
+if test x${MACHINE} = x; then
     case `./config.guess` in
     alpha-* | alphaev[56]-* | alphaev56-* | alphapca56-*)
        MACHINE=alpha
@@ -77,19 +77,19 @@ if test "x${MACHINE}" = x; then
     esac
 fi
 
-if test "${MACHINE}" = none; then
+if test ${MACHINE} = none; then
     exit 0
 fi
 
-ln -s "machines/${MACHINE}" machine
+echo "ln -s machines/${MACHINE} machine"
+ln -s machines/${MACHINE} machine
 
-LINKS="compiler.cbf compiler.pkg compiler.sf"
+LINKS="compiler.cbf compiler.pkg compiler.sf make.com"
 if test "${MACHINE}" = C; then
     LINKS="${LINKS} make.so"
-else
-    LINKS="${LINKS} make.com"
 fi
 
 for FN in ${LINKS}; do
+    echo "ln -s machine/${FN} ${FN}"
     ln -s machine/${FN} ${FN}
 done