Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-5]: src/gnu/usr.bin/gas.new Pull up revision 1.18 (via patch, r...
details: https://anonhg.NetBSD.org/src/rev/d97f4ada944d
branches: netbsd-1-5
changeset: 491625:d97f4ada944d
user: he <he%NetBSD.org@localhost>
date: Sun May 06 13:22:46 2001 +0000
description:
Pull up revision 1.18 (via patch, requested by martin):
Fix logic botch so that in-tree gas isn't built for sparc64, and so
that we don't build it on m68k or ns32k unless we build for ELF.
diffstat:
gnu/usr.bin/gas.new/Makefile | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diffs (21 lines):
diff -r 7c79fb977f0b -r d97f4ada944d gnu/usr.bin/gas.new/Makefile
--- a/gnu/usr.bin/gas.new/Makefile Thu May 03 22:59:11 2001 +0000
+++ b/gnu/usr.bin/gas.new/Makefile Sun May 06 13:22:46 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.12.2.1 2001/04/22 17:45:30 he Exp $
+# $NetBSD: Makefile,v 1.12.2.2 2001/05/06 13:22:46 he Exp $
#
.include <bsd.own.mk>
@@ -10,8 +10,9 @@
TARGET_ARCH ?= ${MACHINE_ARCH}
.endif
-.if (${MACHINE_ARCH} != "m68k" && ${MACHINE_ARCH} != "ns32k") || \
- (${OBJECT_FMT} == "ELF" && ${MACHINE_ARCH} != "sparc64")
+.if ${MACHINE_ARCH} != "sparc64" && \
+ ((${MACHINE_ARCH} != "m68k" && ${MACHINE_ARCH} != "ns32k") || \
+ ${OBJECT_FMT} == "ELF")
PROG= as
MAN= as.1
SRCS= app.c as.c atof-generic.c bignum-copy.c cond.c depend.c \
Home |
Main Index |
Thread Index |
Old Index