summaryrefslogtreecommitdiff
path: root/net/ntp4
diff options
context:
space:
mode:
authorreed <reed>2004-02-03 23:04:41 +0000
committerreed <reed>2004-02-03 23:04:41 +0000
commitef747bf96dad9d13dc6c757dc9920f3fe0a0af0c (patch)
tree2be3b0ae0f9391e5fcde5cb03d1a7349ebf1ba5d /net/ntp4
parent95f3476f276cc0a6ed1ca69b3bab5c35c6117392 (diff)
downloadpkgsrc-ef747bf96dad9d13dc6c757dc9920f3fe0a0af0c.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"