summaryrefslogtreecommitdiff
path: root/devel/bmake
diff options
context:
space:
mode:
authorjlam <jlam>2002-02-06 16:58:11 +0000
committerjlam <jlam>2002-02-06 16:58:11 +0000
commitb195a70df8cfa6c8501331fe805e96c57342ce80 (patch)
tree0314060661b2a2c2c29d92417a77330da29f157e /devel/bmake
parent06e35f1ddbfda76a1ec3f6cb823737c4e0b5e49f (diff)
downloadpkgsrc-b195a70df8cfa6c8501331fe805e96c57342ce80.tar.gz
Changes instances where BSD_INSTALL_* were used by targets in the Makefile
into the equivalent INSTALL_*. This is fallout from the change in revision 1.915 that removed ${MAKE_ENV} from the environment for a recursive make.
Diffstat (limited to 'devel/bmake')
-rw-r--r--devel/bmake/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/devel/bmake/Makefile b/devel/bmake/Makefile
index 02c539c4e1f..17d4f385488 100644
--- a/devel/bmake/Makefile
+++ b/devel/bmake/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2001/10/18 21:41:06 sjg Exp $
+# $NetBSD: Makefile,v 1.4 2002/02/06 16:58:12 jlam Exp $
#
DISTNAME= bmake-3.1.12
@@ -21,8 +21,8 @@ do-build:
cd ${WRKSRC} && MAKESYSPATH=${makesyspath} make -f makefile.boot bootstrap
do-install:
- ${BSD_INSTALL_PROGRAM} ${WRKSRC}/bmake ${PREFIX}/bin
- ${BSD_INSTALL_MAN} ${WRKSRC}/bmake.cat1 ${PREFIX}/man/cat1/bmake.0
- ${BSD_INSTALL_MAN} ${WRKSRC}/bmake.1 ${PREFIX}/man/man1
+ ${INSTALL_PROGRAM} ${WRKSRC}/bmake ${PREFIX}/bin
+ ${INSTALL_MAN} ${WRKSRC}/bmake.cat1 ${PREFIX}/man/cat1/bmake.0
+ ${INSTALL_MAN} ${WRKSRC}/bmake.1 ${PREFIX}/man/man1
.include "../../mk/bsd.pkg.mk"