Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 17 Oct 2015 09:26:16 +0000 (UTC)
From:      Garrett Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r289451 - head/share/zoneinfo
Message-ID:  <201510170926.t9H9QGPb071820@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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} \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201510170926.t9H9QGPb071820>