aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/bmake
diff options
context:
space:
mode:
authorSimon J. Gerraty <sjg@FreeBSD.org>2012-11-16 01:37:25 +0000
committerSimon J. Gerraty <sjg@FreeBSD.org>2012-11-16 01:37:25 +0000
commit59a02420d850c3de98f222c847bcdc95ef54cdcf (patch)
treef309932499193bc9bb630ead5d6aeb07eeb582a8 /usr.bin/bmake
parentb98ba21ac25feab0ce8440ff246501ceec5323df (diff)
parent7ab046e1f1b382bc125699b0c0d589273adcd420 (diff)
downloadsrc-59a02420d850c3de98f222c847bcdc95ef54cdcf.tar.gz
src-59a02420d850c3de98f222c847bcdc95ef54cdcf.zip
Merge bmake-20121111
Also pay attention to MK_SHARED_TOOLCHAIN. Approved by: marcel (mentor)
Notes
Notes: svn path=/head/; revision=243115
Diffstat (limited to 'usr.bin/bmake')
-rw-r--r--usr.bin/bmake/Makefile4
-rw-r--r--usr.bin/bmake/Makefile.inc4
-rw-r--r--usr.bin/bmake/unit-tests/Makefile6
3 files changed, 10 insertions, 4 deletions
diff --git a/usr.bin/bmake/Makefile b/usr.bin/bmake/Makefile
index 44ce56f3e168..7ae5e5ff5480 100644
--- a/usr.bin/bmake/Makefile
+++ b/usr.bin/bmake/Makefile
@@ -13,7 +13,7 @@ CFLAGS+= -I${.CURDIR}
# $NetBSD: Makefile,v 1.56 2012/05/30 21:54:23 sjg Exp $
# @(#)Makefile 5.2 (Berkeley) 12/28/90
-# $Id: Makefile.in,v 1.174 2012/10/10 18:46:24 sjg Exp $
+# $Id: Makefile.in,v 1.178 2012/11/15 16:48:59 sjg Exp $
PROG?= ${.CURDIR:T}
SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \
@@ -33,7 +33,7 @@ srcdir= ${SRCTOP}/contrib/bmake
CC?= gcc
# Base version on src date
-MAKE_VERSION= 20121010
+MAKE_VERSION= 20121111
DEFAULT_SYS_PATH = .../share/mk:/usr/share/mk
CPPFLAGS+=
diff --git a/usr.bin/bmake/Makefile.inc b/usr.bin/bmake/Makefile.inc
index 4b126c77f887..c8ca110f933c 100644
--- a/usr.bin/bmake/Makefile.inc
+++ b/usr.bin/bmake/Makefile.inc
@@ -11,4 +11,8 @@
PROG= make
.endif
+.if ${MK_SHARED_TOOLCHAIN} == "no"
+NO_SHARED?= YES
+.endif
+
WARNS=3
diff --git a/usr.bin/bmake/unit-tests/Makefile b/usr.bin/bmake/unit-tests/Makefile
index c22dbc5c198d..89c7fe0a7c41 100644
--- a/usr.bin/bmake/unit-tests/Makefile
+++ b/usr.bin/bmake/unit-tests/Makefile
@@ -5,9 +5,9 @@
SRCTOP?= ${.CURDIR:H:H:H}
-# $Id: Makefile.in,v 1.38 2012/06/19 23:38:48 sjg Exp $
+# $Id: Makefile.in,v 1.39 2012/11/09 19:16:10 sjg Exp $
#
-# $NetBSD: Makefile,v 1.34 2012/06/19 23:25:53 sjg Exp $
+# $NetBSD: Makefile,v 1.35 2012/11/09 19:08:28 sjg Exp $
#
# Unit tests for make(1)
# The main targets are:
@@ -47,6 +47,7 @@ SUBFILES= \
modorder \
modts \
modword \
+ order \
phony-end \
posix \
qequals \
@@ -59,6 +60,7 @@ SUBFILES= \
all: ${SUBFILES}
flags.doterror=
+flags.order=-j1
# the tests are actually done with sub-makes.
.PHONY: ${SUBFILES}