diff options
author | Enji Cooper <ngie@FreeBSD.org> | 2015-10-17 09:26:16 +0000 |
---|---|---|
committer | Enji Cooper <ngie@FreeBSD.org> | 2015-10-17 09:26:16 +0000 |
commit | 9b209ed23e90b758ed9ffd86859c7f1764ba086f (patch) | |
tree | ad1516b1e04c3392f5a3d31efecc90583d6fd3c8 | |
parent | 211d866621194e58548a29ce3ab960f2022deb11 (diff) | |
download | src-9b209ed23e90b758ed9ffd86859c7f1764ba086f.tar.gz src-9b209ed23e90b758ed9ffd86859c7f1764ba086f.zip |
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
Notes
Notes:
svn path=/head/; revision=289451
-rw-r--r-- | share/zoneinfo/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/zoneinfo/Makefile b/share/zoneinfo/Makefile index ebb26c7c7ad1..b3d968dc4b4e 100644 --- a/share/zoneinfo/Makefile +++ b/share/zoneinfo/Makefile @@ -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} \ |