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 /misc/astrolog | |
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 'misc/astrolog')
-rw-r--r-- | misc/astrolog/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/astrolog/Makefile b/misc/astrolog/Makefile index 477a61ba0a2..18c6f2c788a 100644 --- a/misc/astrolog/Makefile +++ b/misc/astrolog/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2001/02/17 18:08:51 wiz Exp $ +# $NetBSD: Makefile,v 1.12 2001/02/25 04:18:01 hubertf Exp $ # FreeBSD Id: Makefile,v 1.12 1997/08/10 22:31:15 fenner Exp # @@ -24,7 +24,7 @@ ALL_TARGET= astrolog NO_WRKSUBDIR= yes do-install: - -@${MKDIR} ${PREFIX}/lib/astrolog + -@${INSTALL_DATA_DIR} ${PREFIX}/lib/astrolog cd ${DISTDIR}/${DIST_SUBDIR} && \ ${INSTALL_DATA} ${EPHEM} ${PREFIX}/lib/astrolog cd ${WRKSRC} && \ @@ -34,7 +34,7 @@ do-install: ${INSTALL_DATA} astrolog.dat ${PREFIX}/lib/astrolog; \ fi cd ${WRKSRC} && ${INSTALL_PROGRAM} astrolog ${PREFIX}/bin - -@${MKDIR} ${PREFIX}/share/doc/astrolog + -@${INSTALL_DATA_DIR} ${PREFIX}/share/doc/astrolog cd ${WRKSRC} && \ ${INSTALL_DATA} Helpfile.530 ${PREFIX}/share/doc/astrolog cd ${WRKSRC} && \ |