svn commit: r271047 - head/share/zoneinfo

Ed Maste emaste at FreeBSD.org
Wed Sep 3 18:51:34 UTC 2014


Author: emaste
Date: Wed Sep  3 18:51:33 2014
New Revision: 271047
URL: http://svnweb.freebsd.org/changeset/base/271047

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.
  
  Reviewed by:	brooks
  Sponsored by:	DARPA, AFRL
  Differential Revision: https://reviews.freebsd.org/D719

Modified:
  head/share/zoneinfo/Makefile

Modified: head/share/zoneinfo/Makefile
==============================================================================
--- head/share/zoneinfo/Makefile	Wed Sep  3 17:51:03 2014	(r271046)
+++ head/share/zoneinfo/Makefile	Wed Sep  3 18:51:33 2014	(r271047)
@@ -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-head mailing list