diff options
author | jlam <jlam@pkgsrc.org> | 2002-02-06 16:58:11 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2002-02-06 16:58:11 +0000 |
commit | 7046abc822c457a46356fad85e66757b13c0841d (patch) | |
tree | 0314060661b2a2c2c29d92417a77330da29f157e /net/LaBrea/Makefile | |
parent | d93fe0cd603b60e69ea77059d773740a1d6c4733 (diff) | |
download | pkgsrc-7046abc822c457a46356fad85e66757b13c0841d.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 'net/LaBrea/Makefile')
-rw-r--r-- | net/LaBrea/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/LaBrea/Makefile b/net/LaBrea/Makefile index 509e2964dd6..b37ce6908a9 100644 --- a/net/LaBrea/Makefile +++ b/net/LaBrea/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2001/11/07 16:31:26 agc Exp $ +# $NetBSD: Makefile,v 1.3 2002/02/06 16:58:15 jlam Exp $ # DISTNAME= LaBrea @@ -17,8 +17,8 @@ post-extract: ${SED} -e 's/.$$//' -e 's|LaBrea.README|${PREFIX}/share/doc/LaBrea|g' LaBrea.c.in > LaBrea.c do-install: - ${BSD_INSTALL_PROGRAM} ${WRKSRC}/LaBrea ${PREFIX}/sbin - ${BSD_INSTALL_DATA} ${WRKSRC}/LaBrea.README ${PREFIX}/share/doc/LaBrea + ${INSTALL_PROGRAM} ${WRKSRC}/LaBrea ${PREFIX}/sbin + ${INSTALL_DATA} ${WRKSRC}/LaBrea.README ${PREFIX}/share/doc/LaBrea .include "../../devel/libnet/buildlink.mk" .include "../../mk/bsd.pkg.mk" |