Make sure "compiler/machine" link is made properly.
authorChris Hanson <org/chris-hanson/cph>
Fri, 4 May 2007 01:24:31 +0000 (01:24 +0000)
committerChris Hanson <org/chris-hanson/cph>
Fri, 4 May 2007 01:24:31 +0000 (01:24 +0000)
v7/src/compiler/configure

index bb70f43d95b86d357ded831f6f795fe00afe9c59..4620f1b56e494fdc53d9c9521da0bebe27c88a82 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-# $Id: configure,v 1.16 2007/05/03 12:48:41 cph Exp $
+# $Id: configure,v 1.17 2007/05/04 01:24:31 cph Exp $
 #
 # Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
 #     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
@@ -81,6 +81,8 @@ if test ${MACHINE} = none; then
     exit 0
 fi
 
+echo "rm -f machine"
+rm -f machine
 echo "ln -s machines/${MACHINE} machine"
 ln -s machines/${MACHINE} machine
 
@@ -90,6 +92,6 @@ if test "${MACHINE}" = C; then
 fi
 
 for FN in ${LINKS}; do
-    echo "ln -s machine/${FN} ${FN}"
-    ln -s machine/${FN} ${FN}
+    echo "ln -s machine/${FN} ."
+    ln -s machine/${FN} .
 done