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 /emulators/spim | |
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 'emulators/spim')
-rw-r--r-- | emulators/spim/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emulators/spim/Makefile b/emulators/spim/Makefile index 926b35958d7..6d6f67a19c5 100644 --- a/emulators/spim/Makefile +++ b/emulators/spim/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2001/02/17 18:38:23 wiz Exp $ +# $NetBSD: Makefile,v 1.8 2001/02/25 04:17:46 hubertf Exp $ # FreeBSD Id: Makefile,v 1.5 1997/10/10 06:53:35 obrien Exp # @@ -24,11 +24,11 @@ pre-configure: @${RM} -f ${WRKSRC}/y.tab.* pre-install: - @${MKDIR} ${PREFIX}/share/spim && ${CHMOD} a+rx ${PREFIX}/share/spim + @${INSTALL_DATA_DIR} ${PREFIX}/share/spim && ${CHMOD} a+rx ${PREFIX}/share/spim post-install: @${ECHO} "Installing spim/xspim documentation" - @${MKDIR} ${PREFIX}/share/doc/spim \ + @${INSTALL_DATA_DIR} ${PREFIX}/share/doc/spim \ && ${CHMOD} a+rx ${PREFIX}/share/doc/spim ${INSTALL_DATA} ${WRKSRC}/Documentation/spim.ps \ ${PREFIX}/share/doc/spim |