gnu: gpodder: Build reproducibly.
* gnu/packages/gpodder.scm (gpodder)[arguments]: Add 'do-not-run-msgmerge' phase before 'install'. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
bab7a49558
commit
7a352f76cf
|
@ -69,6 +69,13 @@
|
|||
(substitute* "src/gpodder/util.py"
|
||||
(("xdg-open") (string-append xdg-utils "/bin/xdg-open")))
|
||||
#t)))
|
||||
;; 'msgmerge' introduces non-determinism by resetting the
|
||||
;; POT-Creation-Date in .po files.
|
||||
(add-before 'install 'do-not-run-msgmerge
|
||||
(lambda _
|
||||
(substitute* "makefile"
|
||||
(("msgmerge") "true"))
|
||||
#t))
|
||||
(add-before 'install 'make-po-files-writable
|
||||
(lambda _
|
||||
(for-each
|
||||
|
|
Loading…
Reference in New Issue