summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authormatt <matt@NetBSD.org>1999-11-17 02:52:29 +0000
committermatt <matt@NetBSD.org>1999-11-17 02:52:29 +0000
commit37cdd0b801202c5401d5f70fb5caa7d7e4eadee8 (patch)
tree18627ea293e9e4680c6ddcff64b582c9c51e2408 /gnu
parent559f1ca6627c38b24ed71539f991ca32cb4c95c8 (diff)
simply the conditional for ld.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/Makefile15
1 files changed, 8 insertions, 7 deletions
diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile
index 6fdcbe3234a..0189a3e7b1b 100644
--- a/gnu/usr.bin/Makefile
+++ b/gnu/usr.bin/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.89 1999/05/01 16:38:17 veego Exp $
+# $NetBSD: Makefile,v 1.90 1999/11/17 02:52:29 matt Exp $
# for OBJECT_FMT
.include <bsd.own.mk>
@@ -18,12 +18,13 @@ SUBDIR+= gas
SUBDIR+= gas.new
.endif
-.if (${MACHINE_ARCH} == "arm32") || \
- (${MACHINE_ARCH} == "i386" && ${OBJECT_FMT} != "ELF") || \
- (${MACHINE_ARCH} == "m68k" && ${OBJECT_FMT} != "ELF") || \
- (${MACHINE_ARCH} == "ns32k") || \
- (${MACHINE_ARCH} == "sparc" && ${OBJECT_FMT} != "ELF") || \
- (${MACHINE_ARCH} == "vax")
+.if (${OBJECT_FMT} != "ELF") && \
+ ((${MACHINE_ARCH} == "arm32") || \
+ (${MACHINE_ARCH} == "i386") || \
+ (${MACHINE_ARCH} == "m68k") || \
+ (${MACHINE_ARCH} == "ns32k") || \
+ (${MACHINE_ARCH} == "sparc") || \
+ (${MACHINE_ARCH} == "vax"))
SUBDIR+= ld
.endif