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/openh323 | |
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/openh323')
-rw-r--r-- | net/openh323/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
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" |