summaryrefslogtreecommitdiffstats
path: root/share/zoneinfo
diff options
context:
space:
mode:
authorbrooks <brooks@FreeBSD.org>2013-01-11 18:37:51 +0000
committerbrooks <brooks@FreeBSD.org>2013-01-11 18:37:51 +0000
commit29b3d8996d7dcf7db3443c3be67174f6eb4c89c9 (patch)
tree33c60a0f73fc6bfb87548dd954b51cffeb258991 /share/zoneinfo
parent05884d1e6d79cdf2481b31f3475ff4fc34369cb5 (diff)
downloadFreeBSD-src-29b3d8996d7dcf7db3443c3be67174f6eb4c89c9.zip
FreeBSD-src-29b3d8996d7dcf7db3443c3be67174f6eb4c89c9.tar.gz
Use find -exec to install zoneinfo instead of requiring xargs to be an
install tool. Suggested by: delphij
Diffstat (limited to 'share/zoneinfo')
-rw-r--r--share/zoneinfo/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/zoneinfo/Makefile b/share/zoneinfo/Makefile
index 97181da..bccea5e 100644
--- a/share/zoneinfo/Makefile
+++ b/share/zoneinfo/Makefile
@@ -79,9 +79,9 @@ zoneinfo: yearistype ${TDATA}
beforeinstall:
cd ${TZBUILDDIR} && \
- find . -type f -print | xargs -I _FILE_ ${INSTALL} \
+ find . -type f -print -exec ${INSTALL} \
-o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
- _FILE_ ${DESTDIR}/usr/share/zoneinfo/_FILE_
+ \{} ${DESTDIR}/usr/share/zoneinfo/\{} \;
${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
${CONTRIBDIR}/zone.tab ${DESTDIR}/usr/share/zoneinfo/
OpenPOWER on IntegriCloud