Source-Changes-HG archive

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

[src/trunk]: src/sys/modules Fix MKBINUTILS=no builds by leaving out xldscripts.



details:   https://anonhg.NetBSD.org/src/rev/8a0fae612d5e
branches:  trunk
changeset: 750550:8a0fae612d5e
user:      dyoung <dyoung%NetBSD.org@localhost>
date:      Tue Jan 05 20:49:04 2010 +0000

description:
Fix MKBINUTILS=no builds by leaving out xldscripts.

diffstat:

 sys/modules/Makefile |  10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 192abf740a01 -r 8a0fae612d5e sys/modules/Makefile
--- a/sys/modules/Makefile      Tue Jan 05 18:36:16 2010 +0000
+++ b/sys/modules/Makefile      Tue Jan 05 20:49:04 2010 +0000
@@ -1,9 +1,10 @@
-#      $NetBSD: Makefile,v 1.36 2009/12/05 20:11:18 pooka Exp $
+#      $NetBSD: Makefile,v 1.37 2010/01/05 20:49:04 dyoung Exp $
+
+.include <bsd.own.mk>
 
 # For all platforms
 
-SUBDIR=                xldscripts
-SUBDIR+=       accf_dataready
+SUBDIR=                accf_dataready
 SUBDIR+=       accf_httpready
 SUBDIR+=       adosfs
 SUBDIR+=       aio
@@ -56,6 +57,9 @@
 .if (defined(NOTYET))
 SUBDIR+=       unionfs
 .endif
+.if ${MKBINUTILS} != "no"
+SUBDIR+=       xldscripts
+.endif
 
 # Machine dependent section
 .if ${MACHINE_ARCH} != "alpha"



Home | Main Index | Thread Index | Old Index