me
/
guix
Archived
1
0
Fork 0

maint: Generate AUTHORS and ChangeLog reproducibly.

* Makefile.am (gen-ChangeLog): Set LC_ALL=en_US.UTF-8 TZ=UTC0.
(gen-AUTHORS): Likewise.

Change-Id: I109ceffdf07b8dde6385b6b509366c47564c9f31
master
Janneke Nieuwenhuizen 2024-04-03 23:45:59 +02:00
parent ea23a124ad
commit b850d77e11
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 4 additions and 0 deletions

View File

@ -974,6 +974,8 @@ gen-tarball-version:
gen-ChangeLog:
$(AM_V_GEN)if test -e .git; then \
export LC_ALL=en_US.UTF-8; \
export TZ=UTC0; \
$(top_srcdir)/build-aux/gitlog-to-changelog \
> $(distdir)/ChangeLog.tmp; \
rm -f $(distdir)/ChangeLog; \
@ -983,6 +985,8 @@ gen-ChangeLog:
gen-AUTHORS:
$(AM_V_GEN)if test -e .git; then \
rm -f "$(distdir)/AUTHORS"; \
export LC_ALL=en_US.UTF-8; \
export TZ=UTC0; \
$(top_builddir)/pre-inst-env "$(GUILE)" \
"$(top_srcdir)/build-aux/generate-authors.scm" \
"$(top_srcdir)" "$(distdir)/AUTHORS"; \