Module Name: src
Committed By: christos
Date: Mon Jun 23 02:13:53 UTC 2014
Modified Files:
src/share/mk: bsd.own.mk
Log Message:
unbreak powerpc64; it is not ready for gcc-4.8 ATM.
To generate a diff of this commit:
cvs rdiff -u -r1.815 -r1.816 src/share/mk/bsd.own.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/share/mk/bsd.own.mk
diff -u src/share/mk/bsd.own.mk:1.815 src/share/mk/bsd.own.mk:1.816
--- src/share/mk/bsd.own.mk:1.815 Fri Jun 6 17:04:02 2014
+++ src/share/mk/bsd.own.mk Sun Jun 22 22:13:53 2014
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.own.mk,v 1.815 2014/06/06 21:04:02 skrll Exp $
+# $NetBSD: bsd.own.mk,v 1.816 2014/06/23 02:13:53 christos Exp $
# This needs to be before bsd.init.mk
.if defined(BSD_MK_COMPAT_FILE)
@@ -54,7 +54,8 @@ TOOLCHAIN_MISSING?= no
# Platforms still using GCC 4.5
.if \
${MACHINE_CPU} == "m68k" || \
- ${MACHINE_ARCH} == "powerpc"
+ ${MACHINE_ARCH} == "powerpc" || \
+ ${MACHINE_ARCH} == "powerpc64"
HAVE_GCC?= 45
.else