summaryrefslogtreecommitdiff
path: root/comms/pilotmgr
diff options
context:
space:
mode:
authorhubertf <hubertf>2001-02-25 04:17:35 +0000
committerhubertf <hubertf>2001-02-25 04:17:35 +0000
commita753e3df91cdc99aabc59d87ac260acdd2edb79d (patch)
treef7733ee24f18b76cbeda1e577b4cec2485f4cf3e /comms/pilotmgr
parenta0e1b5390dbcf8c448cd2ce2bff91b542a46a4ef (diff)
downloadpkgsrc-a753e3df91cdc99aabc59d87ac260acdd2edb79d.tar.gz
Cleanup MKDIR usage => INSTALL_*_DIR
XXX need to teach pkglint to be more picky about this
Diffstat (limited to 'comms/pilotmgr')
-rw-r--r--comms/pilotmgr/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/comms/pilotmgr/Makefile b/comms/pilotmgr/Makefile
index 227d46b2a14..2fade23cfbf 100644
--- a/comms/pilotmgr/Makefile
+++ b/comms/pilotmgr/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.12 2001/02/16 13:56:20 wiz Exp $
+# $NetBSD: Makefile,v 1.13 2001/02/25 04:17:38 hubertf Exp $
DISTNAME= pilotmgr-1.107p2
CATEGORIES= comms
@@ -31,7 +31,7 @@ post-extract:
@${CHMOD} +x ${WRKSRC}/Setup
do-install:
- ${MKDIR} ${PM_PERL_DIR} ${PM_DOC_DIR}
+ ${INSTALL_DATA_DIR} ${PM_PERL_DIR} ${PM_DOC_DIR}
for FILE in ${WRKSRC}/*.pm; do \
${INSTALL_DATA} $$FILE ${PM_PERL_DIR}; \
done
@@ -39,7 +39,7 @@ do-install:
${LN} -fs ${PM_PERL_DIR}/PilotMgr.pm ${PREFIX}/bin/PilotManager
cd ${WRKSRC}; \
for DIR in lib/*; do \
- ${MKDIR} ${PM_PERL_DIR}/$$DIR; \
+ ${INSTALL_DATA_DIR} ${PM_PERL_DIR}/$$DIR; \
for FILE in $$DIR/*; do \
${INSTALL_DATA} $$FILE ${PM_PERL_DIR}/$$DIR; \
done; \