svn commit: r277080 - stable/9/share/zoneinfo
Ed Maste
emaste at FreeBSD.org
Mon Jan 12 18:19:08 UTC 2015
Author: emaste
Date: Mon Jan 12 18:19:07 2015
New Revision: 277080
URL: https://svnweb.freebsd.org/changeset/base/277080
Log:
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.
MFC of r271047.
Modified:
stable/9/share/zoneinfo/Makefile
Directory Properties:
stable/9/share/zoneinfo/ (props changed)
Modified: stable/9/share/zoneinfo/Makefile
==============================================================================
--- stable/9/share/zoneinfo/Makefile Mon Jan 12 18:14:22 2015 (r277079)
+++ stable/9/share/zoneinfo/Makefile Mon Jan 12 18:19:07 2015 (r277080)
@@ -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} \
More information about the svn-src-stable-9
mailing list