summaryrefslogtreecommitdiff
path: root/net/ntp4
diff options
context:
space:
mode:
authorreed <reed@pkgsrc.org>2004-02-03 23:04:41 +0000
committerreed <reed@pkgsrc.org>2004-02-03 23:04:41 +0000
commit94419680abede377d5273d1cada6fe2765813fcc (patch)
tree2be3b0ae0f9391e5fcde5cb03d1a7349ebf1ba5d /net/ntp4
parent55f66ddd70d8c3ca1be82cec5a919aa1bed7f43f (diff)
downloadpkgsrc-94419680abede377d5273d1cada6fe2765813fcc.tar.gz
Use more portable find -print0 (instead of -printx).
Okay'd by maintainer, fredb.
Diffstat (limited to 'net/ntp4')
-rw-r--r--net/ntp4/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ntp4/Makefile b/net/ntp4/Makefile
index 6f72405ead3..7343957035b 100644
--- a/net/ntp4/Makefile
+++ b/net/ntp4/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.30 2003/11/21 01:02:24 fredb Exp $
+# $NetBSD: Makefile,v 1.31 2004/02/03 23:04:41 reed Exp $
#
DISTNAME= ntp-4.2.0
@@ -26,8 +26,8 @@ post-install:
${PAX} -rw -pe -s "/html/ntp4/" html ${DOCDIR}; \
${PAX} -rw -pe -s "/conf/ntp4/" conf ${EXAMPLESDIR}); \
${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${ALL_NTP_DOCS}; \
- ${FIND} ${ALL_NTP_DOCS} -type d -printx | ${XARGS} ${CHMOD} ${PKGDIRMODE}; \
- ${FIND} ${ALL_NTP_DOCS} -type f -printx | ${XARGS} ${CHMOD} ${SHAREMODE};
+ ${FIND} ${ALL_NTP_DOCS} -type d -print0 | ${XARGS} -0 ${CHMOD} ${PKGDIRMODE}; \
+ ${FIND} ${ALL_NTP_DOCS} -type f -print0 | ${XARGS} -0 ${CHMOD} ${SHAREMODE};
.include "../../mk/bsd.prefs.mk"