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 /audio/xamp | |
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 'audio/xamp')
-rw-r--r-- | audio/xamp/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/audio/xamp/Makefile b/audio/xamp/Makefile index 453e74daab4..bf8327bec4e 100644 --- a/audio/xamp/Makefile +++ b/audio/xamp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2001/02/16 13:30:52 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2001/02/25 04:17:37 hubertf Exp $ # FreeBSD: ports/audio/xamp/Makefile,v 1.5 1999/08/25 04:36:22 obrien Exp # @@ -35,11 +35,11 @@ SKIN_DIR= ${PREFIX}/lib/X11/xamp do-install: ${INSTALL_PROGRAM} ${WRKSRC}/xamp ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/xamp.1 ${PREFIX}/man/man1 - @${MKDIR} ${SKIN_DIR}/bfamp-xamp + @${INSTALL_DATA_DIR} ${SKIN_DIR}/bfamp-xamp ${INSTALL_DATA} ${WRKDIR}/bfamp-xamp/*.bmp ${SKIN_DIR}/bfamp-xamp - @${MKDIR} ${SKIN_DIR}/chrome-xamp + @${INSTALL_DATA_DIR} ${SKIN_DIR}/chrome-xamp ${INSTALL_DATA} ${WRKDIR}/chrome-xamp/*.bmp ${SKIN_DIR}/chrome-xamp - @${MKDIR} ${SKIN_DIR}/mmxxamp-xamp + @${INSTALL_DATA_DIR} ${SKIN_DIR}/mmxxamp-xamp ${INSTALL_DATA} ${WRKDIR}/mmxxamp-xamp/*.bmp ${SKIN_DIR}/mmxxamp-xamp .include "../../mk/bsd.pkg.mk" |