Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/gnu Make binutils stuff conditional on HAVE_BINUTILS being 216.



details:   https://anonhg.NetBSD.org/src/rev/3e320f84db2a
branches:  trunk
changeset: 746694:3e320f84db2a
user:      skrll <skrll%NetBSD.org@localhost>
date:      Tue Aug 18 15:11:25 2009 +0000

description:
Make binutils stuff conditional on HAVE_BINUTILS being 216.

diffstat:

 gnu/lib/Makefile      |  4 +++-
 gnu/usr.bin/Makefile  |  4 ++--
 gnu/usr.sbin/Makefile |  4 +++-
 3 files changed, 8 insertions(+), 4 deletions(-)

diffs (48 lines):

diff -r 739170aae55a -r 3e320f84db2a gnu/lib/Makefile
--- a/gnu/lib/Makefile  Tue Aug 18 15:08:51 2009 +0000
+++ b/gnu/lib/Makefile  Tue Aug 18 15:11:25 2009 +0000
@@ -1,10 +1,12 @@
-#      $NetBSD: Makefile,v 1.42 2006/11/20 17:08:35 skrll Exp $
+#      $NetBSD: Makefile,v 1.43 2009/08/18 15:11:25 skrll Exp $
 
 .include <bsd.own.mk>
 
 .if ${MKBFD} != "no"
+.if ${HAVE_BINUTILS} == "216"
 SUBDIR+= libopcodes libbfd libiberty
 .endif
+.endif
 
 .if ${MKGCC} != "no"
 SUBDIR+= crtstuff4 libgcc4 libobjc4 libsupc++4 libstdc++-v3_4
diff -r 739170aae55a -r 3e320f84db2a gnu/usr.bin/Makefile
--- a/gnu/usr.bin/Makefile      Tue Aug 18 15:08:51 2009 +0000
+++ b/gnu/usr.bin/Makefile      Tue Aug 18 15:11:25 2009 +0000
@@ -1,10 +1,10 @@
-#      $NetBSD: Makefile,v 1.129 2009/04/08 16:29:18 christos Exp $
+#      $NetBSD: Makefile,v 1.130 2009/08/18 15:11:25 skrll Exp $
 
 # for OBJECT_FMT
 .include <bsd.own.mk>
 
 SUBDIR+=       bc
-.if ${MKBINUTILS} != "no"
+.if ${MKBINUTILS} != "no" && ${HAVE_BINUTILS} == "216"
 SUBDIR+=       binutils
 .endif
 SUBDIR+=       c89 c99
diff -r 739170aae55a -r 3e320f84db2a gnu/usr.sbin/Makefile
--- a/gnu/usr.sbin/Makefile     Tue Aug 18 15:08:51 2009 +0000
+++ b/gnu/usr.sbin/Makefile     Tue Aug 18 15:11:25 2009 +0000
@@ -1,8 +1,10 @@
-#      $NetBSD: Makefile,v 1.16 2009/06/23 17:58:24 tron Exp $
+#      $NetBSD: Makefile,v 1.17 2009/08/18 15:11:25 skrll Exp $
 
 .include <bsd.own.mk>
 
+.if ${HAVE_BINUTILS} == "216"
 SUBDIR=                dbsym mdsetimage ncdcs
+.endif
 
 # Speedup stubs for some subtrees that don't need to run these rules
 includes-dbsym includes-mdsetimage:



Home | Main Index | Thread Index | Old Index