diff options
author | hubertf <hubertf@pkgsrc.org> | 2001-02-25 04:17:35 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2001-02-25 04:17:35 +0000 |
commit | d32e698de6a63cf0273391b498d5c8e2bc3ea265 (patch) | |
tree | f7733ee24f18b76cbeda1e577b4cec2485f4cf3e /www/wwwoffle | |
parent | b1fe99775bd942bbd05e584ba34834516831b04a (diff) | |
download | pkgsrc-d32e698de6a63cf0273391b498d5c8e2bc3ea265.tar.gz |
Cleanup MKDIR usage => INSTALL_*_DIR
XXX need to teach pkglint to be more picky about this
Diffstat (limited to 'www/wwwoffle')
-rw-r--r-- | www/wwwoffle/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/wwwoffle/Makefile b/www/wwwoffle/Makefile index ab2488b7c71..4354a1473e2 100644 --- a/www/wwwoffle/Makefile +++ b/www/wwwoffle/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2001/02/17 17:22:48 wiz Exp $ +# $NetBSD: Makefile,v 1.26 2001/02/25 04:18:25 hubertf Exp $ DISTNAME= wwwoffle-2.6 CATEGORIES= www @@ -33,10 +33,10 @@ post-build: >${WRKDIR}/wwwoffle.sh pre-install: - ${MKDIR} ${PREFIX}/etc/wwwoffle + ${INSTALL_DATA_DIR} ${PREFIX}/etc/wwwoffle if [ -d /var/wwwoffle ]; then \ ${RM} -rf /var/wwwoffle/html.old; \ - ${MKDIR} /var/wwwoffle/http; \ + ${INSTALL_DATA_DIR} /var/wwwoffle/http; \ fi post-install: |