Module Name: src
Committed By: tsutsui
Date: Wed Apr 15 10:18:34 UTC 2009
Modified Files:
src: Makefile
Log Message:
Remove an explicit BUILDTARGETS do-compat-external-lib before do-build
because now src/compat/Makefile descends there and no particular
dependency on 32 bit compat external libs during do-build.
To generate a diff of this commit:
cvs rdiff -u -r1.268 -r1.269 src/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/Makefile
diff -u src/Makefile:1.268 src/Makefile:1.269
--- src/Makefile:1.268 Wed Feb 25 22:28:36 2009
+++ src/Makefile Wed Apr 15 10:18:34 2009
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.268 2009/02/25 22:28:36 sketch Exp $
+# $NetBSD: Makefile,v 1.269 2009/04/15 10:18:34 tsutsui Exp $
#
# This is the top-level makefile for building NetBSD. For an outline of
@@ -96,8 +96,6 @@
# do-sys-rump-net-lib: builds and installs prerequisites from sys/rump/net/lib
# do-sys-modules: builds and installs kernel modules (used by rump binaries)
# do-ld.so: builds and installs prerequisites from libexec/ld.*_so.
-# do-compat-external-lib: builds and installs prerequisites from
-# compat/external/lib if ${MKCOMPAT} != "no".
# do-compat-lib-csu: builds and installs prerequisites from compat/lib/csu
# if ${MKCOMPAT} != "no".
# do-compat-libgcc: builds and installs prerequisites from
@@ -245,7 +243,6 @@
BUILDTARGETS+= do-compat-lib-csu
BUILDTARGETS+= do-compat-libgcc
BUILDTARGETS+= do-compat-lib-libc
-BUILDTARGETS+= do-compat-external-lib
.endif
BUILDTARGETS+= do-ld.so
BUILDTARGETS+= do-build
@@ -406,7 +403,6 @@
.if ${MKCOMPAT} != "no"
BUILD_COMPAT_LIBS= compat/lib/csu ${BUILD_CC_LIB:S/^/compat\//} compat/lib/libc
-BUILD_COMPAT_LIBS+= compat/external/lib
.else
BUILD_COMPAT_LIBS=
.endif