Author: ngie
Date: Sat Oct 17 09:26:16 2015
New Revision: 289451
URL: https://svnweb.freebsd.org/changeset/base/289451

Log:
  Install share/zoneinfo in a deterministic way by sorting the results from find
  
  This helps produce deterministic METALOG output
  
  PR: 200674
  Submitted by: Fabian Keil <f...@fabiankeil.de>
  Reviewed by: emaste
  MFC after: 1 week
  Obtained from: ElectroBSD

Modified:
  head/share/zoneinfo/Makefile

Modified: head/share/zoneinfo/Makefile
==============================================================================
--- head/share/zoneinfo/Makefile        Sat Oct 17 09:07:53 2015        
(r289450)
+++ head/share/zoneinfo/Makefile        Sat Oct 17 09:26:16 2015        
(r289451)
@@ -79,7 +79,7 @@ zoneinfo: yearistype ${TDATA}
 
 beforeinstall:
        cd ${TZBUILDDIR} && \
-           find * -type f -print -exec ${INSTALL} \
+           find -s * -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
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to