diff options
author | jlam <jlam@pkgsrc.org> | 2003-01-28 22:03:00 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2003-01-28 22:03:00 +0000 |
commit | d7f69e47ce32be7271733bcdf48d28468f400ab9 (patch) | |
tree | d3bbe0e3f34c0d0b96c3bf5abf2964293c181c7b /net/coda5_client/Makefile | |
parent | 63fd8d49cc206089921ed7d972b87faff07efbe6 (diff) | |
download | pkgsrc-d7f69e47ce32be7271733bcdf48d28468f400ab9.tar.gz |
Instead of including bsd.pkg.install.mk directly in a package Makefile,
have it be automatically included by bsd.pkg.mk if USE_PKGINSTALL is set
to "YES". This enforces the requirement that bsd.pkg.install.mk be
included at the end of a package Makefile. Idea suggested by Julio M.
Merino Vidal <jmmv at menta.net>.
Diffstat (limited to 'net/coda5_client/Makefile')
-rw-r--r-- | net/coda5_client/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/coda5_client/Makefile b/net/coda5_client/Makefile index 184fb7a2e0b..4cc837cab12 100644 --- a/net/coda5_client/Makefile +++ b/net/coda5_client/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.35 2002/09/18 21:15:13 jlam Exp $ +# $NetBSD: Makefile,v 1.36 2003/01/28 22:03:49 jlam Exp $ PKGNAME= coda-client-${DIST_VERS} COMMENT= client programs for a replicated high-performance network file system @@ -8,6 +8,7 @@ COMMENT= client programs for a replicated high-performance network file system ALL_TARGET= coda INSTALL_TARGET= client-install +USE_PKGINSTALL= yes CONF_FILES+= ${EGDIR}/sidekick.intr.ex ${PKG_SYSCONFDIR}/sidekick.intr CONF_FILES+= ${EGDIR}/venus.conf.ex ${PKG_SYSCONFDIR}/venus.conf @@ -24,5 +25,4 @@ post-install: -e "s|venus-au\.8|au.8|"` ${LN} -sf venus-au.8 ${PREFIX}/man/man8/au.8 -.include "../../mk/bsd.pkg.install.mk" .include "../../mk/bsd.pkg.mk" |