Module Name: src
Committed By: dyoung
Date: Tue Jan 5 20:49:04 UTC 2010
Modified Files:
src/sys/modules: Makefile
Log Message:
Fix MKBINUTILS=no builds by leaving out xldscripts.
To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 src/sys/modules/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/modules/Makefile
diff -u src/sys/modules/Makefile:1.36 src/sys/modules/Makefile:1.37
--- src/sys/modules/Makefile:1.36 Sat Dec 5 20:11:18 2009
+++ src/sys/modules/Makefile Tue Jan 5 20:49:04 2010
@@ -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"