#!/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,
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
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