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 /x11/xpns | |
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 'x11/xpns')
-rw-r--r-- | x11/xpns/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11/xpns/Makefile b/x11/xpns/Makefile index ab77d9db952..0de28931f2b 100644 --- a/x11/xpns/Makefile +++ b/x11/xpns/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2001/02/17 17:07:23 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2001/02/25 04:18:30 hubertf Exp $ # FreeBSD Id: Makefile,v 1.2 1997/06/29 09:38:20 obrien Exp # @@ -18,14 +18,14 @@ MAKEFILE= makefile ALL_TARGET= pns do-install: - ${MKDIR} ${PREFIX}/lib/xpns + ${INSTALL_DATA_DIR} ${PREFIX}/lib/xpns ${INSTALL_PROGRAM} ${WRKSRC}/pns ${PREFIX}/lib/xpns/ ${INSTALL_DATA} ${WRKSRC}/pns.hlp ${PREFIX}/lib/xpns/ ${INSTALL_DATA} ${WRKSRC}/pns.shell ${PREFIX}/lib/xpns/ ${INSTALL_SCRIPT} ${WRKSRC}/xpns ${PREFIX}/bin/xpns post-install: - ${MKDIR} ${PREFIX}/share/doc/xpns + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/xpns ${CP} ${WRKSRC}/*.net ${PREFIX}/share/doc/xpns/ .include "../../mk/bsd.pkg.mk" |