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} \
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to