svn commit: r289451 - head/share/zoneinfo

Garrett Cooper ngie at FreeBSD.org
Sat Oct 17 09:26:17 UTC 2015


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 <fk at 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} \


More information about the svn-src-all mailing list