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 /www/tidy | |
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 'www/tidy')
-rw-r--r-- | www/tidy/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/tidy/Makefile b/www/tidy/Makefile index 7ddb7c7409f..3b5ad5216d2 100644 --- a/www/tidy/Makefile +++ b/www/tidy/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2001/02/17 17:22:42 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2001/02/25 04:18:25 hubertf Exp $ # FreeBSD Id: ports/www/tidy/Makefile,v 1.15 2000/02/16 00:08:36 mharo Exp DISTNAME= tidy4aug00 @@ -19,9 +19,9 @@ do-install: @${INSTALL_PROGRAM} ${WRKSRC}/tidy ${PREFIX}/bin/tidy @${INSTALL_MAN} ${WRKSRC}/man_page.txt ${PREFIX}/man/man1/tidy.1 @${ECHO_MSG} "===> Installing documentation for ${PKGNAME}" - @${MKDIR} ${PREFIX}/share/doc/tidy + @${INSTALL_DATA_DIR} ${PREFIX}/share/doc/tidy .for docfile in ${DOCFILES} - @${INSTALL_MAN} ${WRKSRC}/${docfile} ${PREFIX}/share/doc/tidy + @${INSTALL_DATA} ${WRKSRC}/${docfile} ${PREFIX}/share/doc/tidy .endfor .include "../../mk/bsd.pkg.mk" |