[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#28271] [PATCH core-updates] gnu: groff: Make build reproducible.
From: |
Ludovic Courtès |
Subject: |
[bug#28271] [PATCH core-updates] gnu: groff: Make build reproducible. |
Date: |
Thu, 31 Aug 2017 12:30:58 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) |
Hi Danny,
Danny Milosavljevic <address@hidden> skribis:
> * gnu/packages/groff.scm (groff)[arguments]: Add phase "setenv".
> ---
> gnu/packages/groff.scm | 9 ++++++++-
> 1 file changed, 8 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/groff.scm b/gnu/packages/groff.scm
> index 67dd1dbfa..6e1a60e9b 100644
> --- a/gnu/packages/groff.scm
> +++ b/gnu/packages/groff.scm
> @@ -56,7 +56,14 @@
> ("perl" ,perl)
> ("psutils" ,psutils)
> ("texinfo" ,texinfo)))
> - (arguments '(#:parallel-build? #f)) ; parallel build fails
> + (arguments
> + `(#:parallel-build? #f ; parallel build fails
> + #:phases
> + (modify-phases %standard-phases
> + (add-after 'unpack 'setenv
> + (lambda _
> + (setenv "GS_GENERATE_UUIDS" "0")
> + #t)))))
OK for the brand new ‘core-updates’ branch.
Thank you!
Ludo’.