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 /net/arla | |
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 'net/arla')
-rw-r--r-- | net/arla/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/arla/Makefile b/net/arla/Makefile index 2d7d0a7b6e7..c2d44995321 100644 --- a/net/arla/Makefile +++ b/net/arla/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2001/02/24 02:09:29 hubertf Exp $ +# $NetBSD: Makefile,v 1.15 2001/02/25 04:18:03 hubertf Exp $ # DISTNAME= arla-0.34.5 @@ -93,7 +93,7 @@ post-install: ${ECHO} "Arla cache dir (${CACHEDIR}) already exists"; \ else \ ${ECHO} "Creating arla cache directory ${CACHEDIR}"; \ - ${MKDIR} ${CACHEDIR}; \ + ${INSTALL_DATA_DIR} ${CACHEDIR}; \ ${CHMOD} 700 ${CACHEDIR}; \ ${CHOWN} root ${CACHEDIR}; \ fi @@ -103,7 +103,7 @@ post-install: ${ECHO} "Creating /sbin/mount_xfs"; \ ${LN} -s ${PREFIX}/bin/mount_xfs /sbin/mount_xfs; \ fi - @-${MKDIR} ${PREFIX}/share/examples/arla + @-${INSTALL_DATA_DIR} ${PREFIX}/share/examples/arla @${SED} -e 's|@PREFIX@|${PREFIX}|g' \ < ${FILESDIR}/lkm.conf \ > ${PREFIX}/share/examples/arla/lkm.conf |