From 625db931b8c01687372a064793dd0071f4a6b3c0 Mon Sep 17 00:00:00 2001 From: matt Date: Thu, 18 Jul 2013 21:59:46 +0000 Subject: [PATCH] Use MACHINE_CPU with m68k (m68000 will not be matched due to MKPIC=no) --- sbin/ldconfig/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sbin/ldconfig/Makefile b/sbin/ldconfig/Makefile index ea76fc249224..59572fe2722a 100644 --- a/sbin/ldconfig/Makefile +++ b/sbin/ldconfig/Makefile @@ -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 # For MKPIC .include @@ -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")