svn commit: r289975 - stable/9/share/zoneinfo
Garrett Cooper
ngie at FreeBSD.org
Mon Oct 26 00:12:02 UTC 2015
Author: ngie
Date: Mon Oct 26 00:12:00 2015
New Revision: 289975
URL: https://svnweb.freebsd.org/changeset/base/289975
Log:
MFstable/10 r289974:
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/9/share/zoneinfo/Makefile
Directory Properties:
stable/9/ (props changed)
stable/9/share/ (props changed)
stable/9/share/zoneinfo/ (props changed)
Modified: stable/9/share/zoneinfo/Makefile
==============================================================================
--- stable/9/share/zoneinfo/Makefile Mon Oct 26 00:11:07 2015 (r289974)
+++ stable/9/share/zoneinfo/Makefile Mon Oct 26 00:12:00 2015 (r289975)
@@ -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-9
mailing list