diff options
author | sjg <sjg@FreeBSD.org> | 2013-04-02 21:31:11 +0000 |
---|---|---|
committer | sjg <sjg@FreeBSD.org> | 2013-04-02 21:31:11 +0000 |
commit | e2bb503df79b3a278b60540c030abad3cc7817e4 (patch) | |
tree | cd72aaf0a299a2f0fc501d1bc3a3e85acc02c0cd /usr.bin | |
parent | 4b74a4a19096550736eef03ae63162039a83d0bd (diff) | |
parent | 34e4a9fc1f5a9c585228e8e07c4994ee5789c55c (diff) | |
download | FreeBSD-src-e2bb503df79b3a278b60540c030abad3cc7817e4.zip FreeBSD-src-e2bb503df79b3a278b60540c030abad3cc7817e4.tar.gz |
Update to bmake-20130330
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/bmake/Makefile | 4 | ||||
-rw-r--r-- | usr.bin/bmake/config.h | 4 | ||||
-rw-r--r-- | usr.bin/bmake/unit-tests/Makefile | 5 |
3 files changed, 7 insertions, 6 deletions
diff --git a/usr.bin/bmake/Makefile b/usr.bin/bmake/Makefile index 6cac1ec..07c6e56 100644 --- a/usr.bin/bmake/Makefile +++ b/usr.bin/bmake/Makefile @@ -14,10 +14,10 @@ CFLAGS+= -I${.CURDIR} CLEANDIRS+= FreeBSD CLEANFILES+= bootstrap -# $Id: Makefile,v 1.5 2013/01/28 19:31:58 sjg Exp $ +# $Id: Makefile,v 1.10 2013/03/31 05:57:19 sjg Exp $ # Base version on src date -MAKE_VERSION= 20130123 +MAKE_VERSION= 20130330 PROG?= ${.CURDIR:T} diff --git a/usr.bin/bmake/config.h b/usr.bin/bmake/config.h index 32026c7..93191b5 100644 --- a/usr.bin/bmake/config.h +++ b/usr.bin/bmake/config.h @@ -230,7 +230,7 @@ #define PACKAGE_NAME "bmake" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "bmake 20121212" +#define PACKAGE_STRING "bmake 20130303" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "bmake" @@ -239,7 +239,7 @@ #define PACKAGE_URL "" /* Define to the version of this package. */ -#define PACKAGE_VERSION "20121212" +#define PACKAGE_VERSION "20130303" /* Define as the return type of signal handlers (`int' or `void'). */ #define RETSIGTYPE void diff --git a/usr.bin/bmake/unit-tests/Makefile b/usr.bin/bmake/unit-tests/Makefile index 0b9db1e..b24871f 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.40 2012/12/28 21:28:19 sjg Exp $ +# $Id: Makefile.in,v 1.42 2013/03/23 02:31:13 sjg Exp $ # -# $NetBSD: Makefile,v 1.35 2012/11/09 19:08:28 sjg Exp $ +# $NetBSD: Makefile,v 1.36 2013/03/22 16:36:46 sjg Exp $ # # Unit tests for make(1) # The main targets are: @@ -35,6 +35,7 @@ SUBFILES= \ error \ export \ export-all \ + export-env \ doterror \ dotwait \ forloop \ |