diff options
| author | Warner Losh <imp@FreeBSD.org> | 2018-02-06 23:12:16 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2018-02-06 23:12:16 +0000 |
| commit | 3182fd63c405644d35360b71c2f98bca927c4c04 (patch) | |
| tree | 76fe2f7d6708a3ebe8452e6682dbe21e60ccae7f /share/zoneinfo/Makefile | |
| parent | 7cbd6d338ed142b0beae01cd7bd67caef4aaf7cf (diff) | |
Notes
Diffstat (limited to 'share/zoneinfo/Makefile')
| -rw-r--r-- | share/zoneinfo/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/share/zoneinfo/Makefile b/share/zoneinfo/Makefile index fbe47ff570a6..6b06d6913d69 100644 --- a/share/zoneinfo/Makefile +++ b/share/zoneinfo/Makefile @@ -95,8 +95,13 @@ zoneinfo: yearistype ${TDATA} zic -D -d ${TZBUILDDIR} -p ${POSIXRULES} -m ${NOBINMODE} \ ${LEAPFILE} -y ${.OBJDIR}/yearistype ${TZFILES} +# +# Sort TZS to ensure they are the same every build. find -s might +# be a shorter way to express this, but it's non-portable. Any +# differences between the two don't matter for this purpose. +# .if make(*install*) -TZS!= cd ${TZBUILDDIR} && find -s * -type f +TZS!= cd ${TZBUILDDIR} && find * -type f | env LC_ALL=C sort .endif beforeinstall: install-zoneinfo |
