From: Chris Hanson Date: Thu, 3 May 2007 12:48:41 +0000 (+0000) Subject: Link "make.com" even for liarc. X-Git-Tag: 20090517-FFI~593 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=b8e3209c362ba7b3e398b7082e8e9f208ff87c95;p=mit-scheme.git Link "make.com" even for liarc. --- diff --git a/v7/src/compiler/configure b/v7/src/compiler/configure index c399cef91..bb70f43d9 100755 --- a/v7/src/compiler/configure +++ b/v7/src/compiler/configure @@ -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