svn commit: r271275 - stable/10/share/zoneinfo

Ed Maste emaste at FreeBSD.org
Mon Sep 8 15:40:55 UTC 2014


Author: emaste
Date: Mon Sep  8 15:40:55 2014
New Revision: 271275
URL: http://svnweb.freebsd.org/changeset/base/271275

Log:
  MFC r271047: 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.
  
  Approved by:	re
  Sponsored by:	DARPA, AFRL

Modified:
  stable/10/share/zoneinfo/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/share/zoneinfo/Makefile
==============================================================================
--- stable/10/share/zoneinfo/Makefile	Mon Sep  8 15:28:17 2014	(r271274)
+++ stable/10/share/zoneinfo/Makefile	Mon Sep  8 15:40:55 2014	(r271275)
@@ -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-all mailing list