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

Garrett Cooper ngie at FreeBSD.org
Mon Oct 26 00:11:09 UTC 2015


Author: ngie
Date: Mon Oct 26 00:11:07 2015
New Revision: 289974
URL: https://svnweb.freebsd.org/changeset/base/289974

Log:
  MFC r289451:
  
  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 <fk at fabiankeil.de>
  Reviewed by: emaste
  Obtained from: ElectroBSD

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

Modified: stable/10/share/zoneinfo/Makefile
==============================================================================
--- stable/10/share/zoneinfo/Makefile	Mon Oct 26 00:09:30 2015	(r289973)
+++ stable/10/share/zoneinfo/Makefile	Mon Oct 26 00:11:07 2015	(r289974)
@@ -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} \


More information about the svn-src-stable-10 mailing list