summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortv <tv@NetBSD.org>2002-02-14 19:17:32 +0000
committertv <tv@NetBSD.org>2002-02-14 19:17:32 +0000
commita194e2ca32ab8644beda0b0194de71455497bbb6 (patch)
treedabd37f13231c5f93fa3ecbcfd61501edc946311 /Makefile
parentc6510076433aebd05fce3ec1f6f1b7c33166e7db (diff)
Bomb if NBUILDJOBS is set, as it is badly broken in some way (as described
in toolchain/14837). This is the root of some problems thought to be of different causes by users who forget to say that they are using "build.sh -j"....
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3b4852132e3..b166d047d7c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.161 2002/02/08 16:11:18 lukem Exp $
+# $NetBSD: Makefile,v 1.162 2002/02/14 19:17:32 tv Exp $
# This is the top-level makefile for building NetBSD. For an outline of
# how to build a snapshot or release, as well as other release engineering
@@ -74,7 +74,12 @@
.endif
.if defined(NBUILDJOBS)
-_J= -j${NBUILDJOBS}
+.if !target(.BEGIN)
+.BEGIN:
+ @echo 'NBUILDJOBS is currently broken; see PR toolchain/14837.'
+ @false
+.endif
+#_J= -j${NBUILDJOBS}
.endif
_SUBDIR= tools lib include gnu bin games libexec sbin usr.bin \