Module Name:    src
Committed By:   matt
Date:           Thu Jul 18 21:39:11 UTC 2013

Modified Files:
        src/libexec/ld.aout_so: Makefile

Log Message:
Use ${MACHINE_CPU} for m68k


To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.50 src/libexec/ld.aout_so/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/libexec/ld.aout_so/Makefile
diff -u src/libexec/ld.aout_so/Makefile:1.49 src/libexec/ld.aout_so/Makefile:1.50
--- src/libexec/ld.aout_so/Makefile:1.49	Tue Feb  5 15:19:18 2013
+++ src/libexec/ld.aout_so/Makefile	Thu Jul 18 21:39:11 2013
@@ -1,10 +1,11 @@
-#	$NetBSD: Makefile,v 1.49 2013/02/05 15:19:18 martin Exp $
+#	$NetBSD: Makefile,v 1.50 2013/07/18 21:39:11 matt Exp $
 
 .include <bsd.own.mk>			# for MKPIC definition
 .include <bsd.endian.mk>		# for TARGET_ENDIANNESS
 
 .if ${MKPIC} != "no"
-.if ${TARGET_ENDIANNESS} == "1234" && ${MACHINE_CPU} == "arm"
+.if (${TARGET_ENDIANNESS} == "1234" && ${MACHINE_CPU} == "arm") \
+    || ${MACHINE_CPU} == "m68k"
 UUDECODE_FILES=	ld.so.${MACHINE_CPU}
 .else
 UUDECODE_FILES=	ld.so.${MACHINE_ARCH}

Reply via email to