summaryrefslogtreecommitdiffstats
path: root/share/zoneinfo
diff options
context:
space:
mode:
authoremaste <emaste@FreeBSD.org>2014-09-03 18:51:33 +0000
committeremaste <emaste@FreeBSD.org>2014-09-03 18:51:33 +0000
commitd1650d164a6dbe1e85601ed9abf0f5fae6d6a5e7 (patch)
treeb83094547e1999212a69fa5e532fa47bd89ce01d /share/zoneinfo
parent6c396af20f91343e8dfa4aef156f0a859a8c5672 (diff)
downloadFreeBSD-src-d1650d164a6dbe1e85601ed9abf0f5fae6d6a5e7.zip
FreeBSD-src-d1650d164a6dbe1e85601ed9abf0f5fae6d6a5e7.tar.gz
Avoid ./ in zoneinfo entries in METALOG
Use of "find ." resulted in METALOG entries with an extra ./ -- e.g., ./usr/share/zoneinfo/./America/Toronto. Avoid this by using globbing via "find *" instead. Reviewed by: brooks Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D719
Diffstat (limited to 'share/zoneinfo')
-rw-r--r--share/zoneinfo/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/zoneinfo/Makefile b/share/zoneinfo/Makefile
index 94036ef..95c61e5 100644
--- a/share/zoneinfo/Makefile
+++ b/share/zoneinfo/Makefile
@@ -79,7 +79,7 @@ zoneinfo: yearistype ${TDATA}
beforeinstall:
cd ${TZBUILDDIR} && \
- find . -type f -print -exec ${INSTALL} \
+ find * -type f -print -exec ${INSTALL} \
-o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
\{} ${DESTDIR}/usr/share/zoneinfo/\{} \;
${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
OpenPOWER on IntegriCloud