diff options
author | sjg <sjg@pkgsrc.org> | 2001-10-18 21:41:06 +0000 |
---|---|---|
committer | sjg <sjg@pkgsrc.org> | 2001-10-18 21:41:06 +0000 |
commit | 037b8ccfb2b06f474f40e7f3a797d96b8914ce1e (patch) | |
tree | 416e8285118af123e79b618a29c2083cf36426da /devel/bmake/Makefile | |
parent | f843972d4d0bdaad4d824e4a0bffb1487154d930 (diff) | |
download | pkgsrc-037b8ccfb2b06f474f40e7f3a797d96b8914ce1e.tar.gz |
Update to bmake-3.1.12
Changes of note:
synched with NetBSD make as of 2001/10/16
fix for bug in compat mode .END processing
fix for bug in cleanup of jobs when using -jN
addition of .USEBEFORE
simpler bootstrap - compiles again on recent linux (Red Hat)
The Makefile here now deals with the fact that we may not have installed
a sys.mk in /usr/pkg/share/mk on BSD systems.
Reviewed: agc
Diffstat (limited to 'devel/bmake/Makefile')
-rw-r--r-- | devel/bmake/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/devel/bmake/Makefile b/devel/bmake/Makefile index b85433ab9b9..02c539c4e1f 100644 --- a/devel/bmake/Makefile +++ b/devel/bmake/Makefile @@ -1,24 +1,24 @@ -# $NetBSD: Makefile,v 1.2 2001/06/17 22:02:20 agc Exp $ +# $NetBSD: Makefile,v 1.3 2001/10/18 21:41:06 sjg Exp $ # -DISTNAME= bmake-3.1.10 +DISTNAME= bmake-3.1.12 CATEGORIES= devel MASTER_SITES= ftp://ftp.netbsd.org/pub/incoming/sjg/ MAINTAINER= sjg@netbsd.org -HOMEPAGE= http://www.quick.com.au/help/sjg/bmake.html -COMMENT= NetBSD version of 'make' utility +HOMEPAGE= http://www.crufty.net/help/sjg/bmake.html +COMMENT= Portable (autoconf) version of NetBSD 'make' utility -DEPENDS+= mk-files-1.2.2:../../devel/mk-files +DEPENDS+= mk-files>=1.2.5:../../devel/mk-files WRKSRC= ${WRKDIR}/bmake +makesyspath=${PREFIX}/share/mk:/usr/share/mk:/usr/local/share/mk:/opt/share/mk GNU_CONFIGURE= yes -CONFIGURE_ARGS+= \ - --with-default-sys-path=${PREFIX}/share/mk:/usr/share/mk:/usr/local/share/mk:/opt/share/mk +CONFIGURE_ARGS+= --with-default-sys-path=${makesyspath} do-build: - cd ${WRKSRC}; make -f makefile.boot bootstrap; ./bmake -f Makefile; ./bmake -f Makefile bmake.1 + cd ${WRKSRC} && MAKESYSPATH=${makesyspath} make -f makefile.boot bootstrap do-install: ${BSD_INSTALL_PROGRAM} ${WRKSRC}/bmake ${PREFIX}/bin |