summaryrefslogtreecommitdiff
path: root/devel/mk-files
diff options
context:
space:
mode:
authorjlam <jlam>2002-02-06 16:58:11 +0000
committerjlam <jlam>2002-02-06 16:58:11 +0000
commit52bbc5d723e71729f9c60d5aa69186def355e352 (patch)
tree0314060661b2a2c2c29d92417a77330da29f157e /devel/mk-files
parent9a24d6a467e5d5e0e41aafc12668cb2eb92d7a5e (diff)
downloadpkgsrc-52bbc5d723e71729f9c60d5aa69186def355e352.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/mk-files')
-rw-r--r--devel/mk-files/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/mk-files/Makefile b/devel/mk-files/Makefile
index b22ec7de6c7..e2d6270f6e3 100644
--- a/devel/mk-files/Makefile
+++ b/devel/mk-files/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2001/10/19 16:37:49 sjg Exp $
+# $NetBSD: Makefile,v 1.4 2002/02/06 16:58:13 jlam Exp $
#
DISTNAME= mk-1.2.5
@@ -37,10 +37,10 @@ ${WRKDIR}/.PLIST_SRC: ${PKGDIR}/PLIST
do-install:
.if ${OPSYS} != "NetBSD"
- ${BSD_INSTALL_DATA} ${WRKSRC}/`uname -s`.sys.mk ${PREFIX}/share/mk/sys.mk
+ ${INSTALL_DATA} ${WRKSRC}/`uname -s`.sys.mk ${PREFIX}/share/mk/sys.mk
.endif
for f in ${MKFILES}; do \
- ${BSD_INSTALL_DATA} ${WRKSRC}/$$f ${PREFIX}/share/mk/; \
+ ${INSTALL_DATA} ${WRKSRC}/$$f ${PREFIX}/share/mk/; \
done
.include "../../mk/bsd.pkg.mk"