diff options
author | hubertf <hubertf> | 2001-02-25 04:17:35 +0000 |
---|---|---|
committer | hubertf <hubertf> | 2001-02-25 04:17:35 +0000 |
commit | 4998ed1120ceba68dfd376a31c35cc7e7560d644 (patch) | |
tree | f7733ee24f18b76cbeda1e577b4cec2485f4cf3e /net/zephyr | |
parent | 404fa988da3e4b378114094a680f0dd6928e6d43 (diff) | |
download | pkgsrc-4998ed1120ceba68dfd376a31c35cc7e7560d644.tar.gz |
Cleanup MKDIR usage => INSTALL_*_DIR
XXX need to teach pkglint to be more picky about this
Diffstat (limited to 'net/zephyr')
-rw-r--r-- | net/zephyr/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/zephyr/Makefile b/net/zephyr/Makefile index a341cfb62f5..a9004d0d009 100644 --- a/net/zephyr/Makefile +++ b/net/zephyr/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2001/02/17 18:20:01 wiz Exp $ +# $NetBSD: Makefile,v 1.20 2001/02/25 04:18:10 hubertf Exp $ # DISTNAME= zephyr-2.0.4 @@ -27,10 +27,10 @@ ZEPHYR_DOCDIR= ${PREFIX}/share/doc/zephyr ZEPHYR_DOCS= INSTALL NOTES OPERATING README USING post-install: - ${MKDIR} ${ZEPHYR_RCDIR} + ${INSTALL_DATA_DIR} ${ZEPHYR_RCDIR} ${SED} -e 's|@prefix@|'${PREFIX}'|g' < ${FILESDIR}/zhm.sh > ${WRKDIR}/zhm.sh ${INSTALL_SCRIPT} ${WRKDIR}/zhm.sh ${ZEPHYR_RCDIR}/zhm - ${MKDIR} ${ZEPHYR_DOCDIR} + ${INSTALL_DATA_DIR} ${ZEPHYR_DOCDIR} for file in ${ZEPHYR_DOCS} ; do \ ${INSTALL_DATA} ${WRKSRC}/$$file ${ZEPHYR_DOCDIR} ; \ done |