Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/share/mk Only ia64 defaults to USE_COMPILERCRTSTUFF=no now, ...
details: https://anonhg.NetBSD.org/src/rev/960692ba7894
branches: trunk
changeset: 789276:960692ba7894
user: joerg <joerg%NetBSD.org@localhost>
date: Mon Aug 12 16:39:28 2013 +0000
description:
Only ia64 defaults to USE_COMPILERCRTSTUFF=no now, so simplify
conditional.
diffstat:
share/mk/bsd.own.mk | 19 ++++---------------
1 files changed, 4 insertions(+), 15 deletions(-)
diffs (35 lines):
diff -r a02d8f7cf23c -r 960692ba7894 share/mk/bsd.own.mk
--- a/share/mk/bsd.own.mk Mon Aug 12 16:38:47 2013 +0000
+++ b/share/mk/bsd.own.mk Mon Aug 12 16:39:28 2013 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.own.mk,v 1.745 2013/08/12 16:38:47 joerg Exp $
+# $NetBSD: bsd.own.mk,v 1.746 2013/08/12 16:39:28 joerg Exp $
# This needs to be before bsd.init.mk
.if defined(BSD_MK_COMPAT_FILE)
@@ -59,22 +59,11 @@
.endif
-.if \
- ${MACHINE_CPU} == "alpha" || \
- ${MACHINE_CPU} == "arm" || \
- ${MACHINE_CPU} == "hppa" || \
- ${MACHINE_ARCH} == "i386" || \
- ${MACHINE_CPU} == "m68k" || \
- ${MACHINE_CPU} == "mips" || \
- ${MACHINE_ARCH} == "powerpc" || \
- ${MACHINE_CPU} == "sh3" || \
- ${MACHINE_ARCH} == "sparc" || \
- ${MACHINE_ARCH} == "sparc64" || \
- ${MACHINE_ARCH} == "x86_64" || \
- ${MACHINE_ARCH} == "vax"
+.if ${MACHINE_CPU} == "ia64"
USE_COMPILERCRTSTUFF?= no
+.else
+USE_COMPILERCRTSTUFF?= yes
.endif
-USE_COMPILERCRTSTUFF?= yes
HAVE_GDB?= 7
Home |
Main Index |
Thread Index |
Old Index