summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2002-02-06 16:58:11 +0000
committerjlam <jlam@pkgsrc.org>2002-02-06 16:58:11 +0000
commit7046abc822c457a46356fad85e66757b13c0841d (patch)
tree0314060661b2a2c2c29d92417a77330da29f157e /net
parentd93fe0cd603b60e69ea77059d773740a1d6c4733 (diff)
downloadpkgsrc-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')
-rw-r--r--net/LaBrea/Makefile6
-rw-r--r--net/openh323/Makefile6
2 files changed, 6 insertions, 6 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"
diff --git a/net/openh323/Makefile b/net/openh323/Makefile
index 26c54362fa7..77d27363bdb 100644
--- a/net/openh323/Makefile
+++ b/net/openh323/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2001/12/30 20:51:33 agc Exp $
+# $NetBSD: Makefile,v 1.6 2002/02/06 16:58:15 jlam Exp $
#
DISTNAME= openh323_1.1beta3
@@ -36,8 +36,8 @@ do-build:
post-install:
cd ${WRKSRC}/include; for f in \*.h ; \
- do ${BSD_INSTALL_DATA} $$f ${PREFIX}/include; done
+ do ${INSTALL_DATA} $$f ${PREFIX}/include; done
-${INSTALL_DATA_DIR} ${PREFIX}/share/openh323
- cd ${WRKSRC}; ${BSD_INSTALL_DATA} openh323u.mak ${PREFIX}/share/openh323
+ cd ${WRKSRC}; ${INSTALL_DATA} openh323u.mak ${PREFIX}/share/openh323
.include "../../mk/bsd.pkg.mk"