diff options
author | hubertf <hubertf> | 2001-02-25 04:17:35 +0000 |
---|---|---|
committer | hubertf <hubertf> | 2001-02-25 04:17:35 +0000 |
commit | a753e3df91cdc99aabc59d87ac260acdd2edb79d (patch) | |
tree | f7733ee24f18b76cbeda1e577b4cec2485f4cf3e /news/inn | |
parent | a0e1b5390dbcf8c448cd2ce2bff91b542a46a4ef (diff) | |
download | pkgsrc-a753e3df91cdc99aabc59d87ac260acdd2edb79d.tar.gz |
Cleanup MKDIR usage => INSTALL_*_DIR
XXX need to teach pkglint to be more picky about this
Diffstat (limited to 'news/inn')
-rw-r--r-- | news/inn/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/news/inn/Makefile b/news/inn/Makefile index 8f188dd02d4..744020ec6ca 100644 --- a/news/inn/Makefile +++ b/news/inn/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.24 2001/02/17 17:54:47 wiz Exp $ +# $NetBSD: Makefile,v 1.25 2001/02/25 04:18:10 hubertf Exp $ DISTNAME= inn-2.3.1 CATEGORIES= news @@ -70,12 +70,12 @@ post-build: done pre-install: - ${MKDIR} ${INN_DATA_DIR} ${PREFIX}/etc/nntp ${PREFIX}/inn + ${INSTALL_DATA_DIR} ${INN_DATA_DIR} ${PREFIX}/etc/nntp ${PREFIX}/inn post-install: ${RM} -f ${PREFIX}/bin/inews ${LN} -s ../inn/bin/inews ${PREFIX}/bin/inews - ${MKDIR} ${PREFIX}/share/examples/inn + ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/inn for FILE in `ls -1 ${WRKSRC}/samples/* | \ ${EGREP} -v '(Makefile|.*\.(in|orig)$$)'`; do \ ${INSTALL_DATA} $$FILE ${PREFIX}/share/examples/inn; \ |