Module Name: src
Committed By: matt
Date: Thu Jul 18 21:59:46 UTC 2013
Modified Files:
src/sbin/ldconfig: Makefile
Log Message:
Use MACHINE_CPU with m68k (m68000 will not be matched due to MKPIC=no)
To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 src/sbin/ldconfig/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sbin/ldconfig/Makefile
diff -u src/sbin/ldconfig/Makefile:1.26 src/sbin/ldconfig/Makefile:1.27
--- src/sbin/ldconfig/Makefile:1.26 Tue Feb 5 07:23:00 2013
+++ src/sbin/ldconfig/Makefile Thu Jul 18 21:59:46 2013
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.26 2013/02/05 07:23:00 matt Exp $
+# $NetBSD: Makefile,v 1.27 2013/07/18 21:59:46 matt Exp $
.include <bsd.own.mk> # For MKPIC
.include <bsd.shlib.mk>
@@ -7,7 +7,7 @@
.if ${MKPIC} != "no" && \
((${MACHINE_CPU} == "arm" && ${TARGET_ENDIANNESS} == "1234") || \
${MACHINE_ARCH} == "i386" || \
- ${MACHINE_ARCH} == "m68k" || \
+ ${MACHINE_CPU} == "m68k" || \
${MACHINE_ARCH} == "sparc" || \
${MACHINE_ARCH} == "vax")