diff options
author | Simon J. Gerraty <sjg@FreeBSD.org> | 2013-08-02 06:25:28 +0000 |
---|---|---|
committer | Simon J. Gerraty <sjg@FreeBSD.org> | 2013-08-02 06:25:28 +0000 |
commit | 51ee2c1cc61f98298ca7996a3b6ae3a0d6953aa0 (patch) | |
tree | 8ceaf694b47a0d2b1022393bf58a564bda1b20a2 /contrib/bmake/configure.in | |
parent | ba41ec4848c8ad344b1a0de2f247208b06266524 (diff) | |
parent | e0f69e1d23f496f590728b9bb0cf0778e4df1210 (diff) |
Merge bmake-20130730
Main feature of interest is .MAKE.JOB.PREFIX=
to suppress --- job --- tokens.
Notes
Notes:
svn path=/head/; revision=253883
Diffstat (limited to 'contrib/bmake/configure.in')
-rw-r--r-- | contrib/bmake/configure.in | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/contrib/bmake/configure.in b/contrib/bmake/configure.in index ba82a75e598d..ac2cc2e64b9b 100644 --- a/contrib/bmake/configure.in +++ b/contrib/bmake/configure.in @@ -1,10 +1,10 @@ dnl dnl RCSid: -dnl $Id: configure.in,v 1.48 2013/03/04 21:25:57 sjg Exp $ +dnl $Id: configure.in,v 1.49 2013/07/06 18:25:19 sjg Exp $ dnl dnl Process this file with autoconf to produce a configure script dnl -AC_INIT([bmake], [20130303], [sjg@NetBSD.org]) +AC_INIT([bmake], [20130706], [sjg@NetBSD.org]) AC_CONFIG_HEADER(config.h) dnl make srcdir absolute @@ -79,15 +79,6 @@ dnl Executable suffix - normally empty; .exe on os2. AC_SUBST(ac_exe_suffix)dnl dnl -dnl Check if /bin/sh will pass .MAKE.LEVEL -echo $ECHO_N "checking if sh will pass .MAKE. variables... $ECHO_C" >&6 -ok=`env .MAKE.LEVEL=1 /bin/sh -c env | grep LEVEL=` -case "$ok" in -"") echo no >&6; CPPFLAGS="${CPPFLAGS} -DNEED_MAKE_LEVEL_SAFE";; -*) echo yes >&6;; -esac - -dnl dnl AC_C_CROSS dnl |