diff options
author | jlam <jlam> | 2002-02-06 16:58:11 +0000 |
---|---|---|
committer | jlam <jlam> | 2002-02-06 16:58:11 +0000 |
commit | 52bbc5d723e71729f9c60d5aa69186def355e352 (patch) | |
tree | 0314060661b2a2c2c29d92417a77330da29f157e /devel/unidiff/Makefile | |
parent | 9a24d6a467e5d5e0e41aafc12668cb2eb92d7a5e (diff) | |
download | pkgsrc-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/unidiff/Makefile')
-rw-r--r-- | devel/unidiff/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/devel/unidiff/Makefile b/devel/unidiff/Makefile index 3ff60bf8bc5..971e41d9146 100644 --- a/devel/unidiff/Makefile +++ b/devel/unidiff/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2001/10/18 10:23:36 agc Exp $ +# $NetBSD: Makefile,v 1.2 2002/02/06 16:58:14 jlam Exp $ # DISTNAME= part01 @@ -17,8 +17,8 @@ EXTRACT_CMD= zcat ${DOWNLOADED_DISTFILE} | gunshar WRKSRC= ${WRKDIR} do-install: - ${BSD_INSTALL_PROGRAM} ${WRKSRC}/unify ${PREFIX}/bin - ${BSD_INSTALL_PROGRAM} ${WRKSRC}/unipatch ${PREFIX}/bin - ${BSD_INSTALL_MAN} ${WRKSRC}/unify.1 ${PREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/unify ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/unipatch ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/unify.1 ${PREFIX}/man/man1 .include "../../mk/bsd.pkg.mk" |