diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 2001-03-28 22:52:23 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 2001-03-28 22:52:23 +0000 |
commit | 5f6eb80946b241f62fc044c4e49e3cc4b5ce3a7c (patch) | |
tree | 36c46b4144fad139ddf254eecbd7d41875e3b634 | |
parent | 61db1b799870e0ebb3d851be0cc15998b696f21c (diff) |
unbreak broken cross-binutils-new target (missing ')' )
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.64 2001/01/27 01:59:43 niklas Exp $ +# $OpenBSD: Makefile,v 1.65 2001/03/28 22:52:22 todd Exp $ # # For more information on building in tricky environments, please see @@ -176,7 +176,7 @@ cross-binutils-new: cross-dirs --prefix ${CROSSDIR}/usr \ --disable-nls --disable-gdbtk --disable-commonbfdlib \ --target `cat ${CROSSDIR}/TARGET_CANON` && \ - ${MAKE} CFLAGS=${CFLAGS} && ${MAKE} install && \ + ${MAKE} CFLAGS=${CFLAGS} && ${MAKE} install ) && \ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 755 \ ${.CURDIR}/usr.bin/lorder/lorder.sh \ ${CROSSDIR}/usr/bin/lorder |