From b8e3209c362ba7b3e398b7082e8e9f208ff87c95 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Thu, 3 May 2007 12:48:41 +0000 Subject: [PATCH] Link "make.com" even for liarc. --- v7/src/compiler/configure | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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 -- 2.25.1