Date: Mon, 26 Oct 2015 00:12:01 +0000 (UTC) From: Garrett Cooper <ngie@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r289975 - stable/9/share/zoneinfo Message-ID: <201510260012.t9Q0C1h6044929@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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} \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201510260012.t9Q0C1h6044929>