Module Name: src
Committed By: he
Date: Thu Aug 20 21:07:47 UTC 2009
Modified Files:
src/usr.bin/ldd: Makefile
Log Message:
Um, the test for mips should use MACHINE_CPU, not MACHINE_ARCH.
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/usr.bin/ldd/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/ldd/Makefile
diff -u src/usr.bin/ldd/Makefile:1.11 src/usr.bin/ldd/Makefile:1.12
--- src/usr.bin/ldd/Makefile:1.11 Thu Aug 20 19:17:19 2009
+++ src/usr.bin/ldd/Makefile Thu Aug 20 21:07:47 2009
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 2009/08/20 19:17:19 he Exp $
+# $NetBSD: Makefile,v 1.12 2009/08/20 21:07:47 he Exp $
WARNS?= 3 # XXX: -Wsign-compare issues ld.elf_so source
@@ -9,7 +9,7 @@
MAN= ldd.1
-.if (${MACHINE_ARCH} != "mips")
+.if (${MACHINE_CPU} != "mips")
SUBDIR= aout
LIB_AOUTDIR!= cd ${.CURDIR}/aout && ${PRINTOBJDIR}
EXTRA_LIBS+= ${LIB_AOUTDIR}/libldd_aout.a