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"
|
(substitute* "src/gpodder/util.py"
|
||||||
(("xdg-open") (string-append xdg-utils "/bin/xdg-open")))
|
(("xdg-open") (string-append xdg-utils "/bin/xdg-open")))
|
||||||
#t)))
|
#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
|
(add-before 'install 'make-po-files-writable
|
||||||
(lambda _
|
(lambda _
|
||||||
(for-each
|
(for-each
|
||||||
|
|
Loading…
Reference in New Issue