diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-03-25 18:21:20 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-03-25 18:21:20 +0100 |
commit | 87bc9f022cdd3487e85cf83cf82222315246abf9 (patch) | |
tree | d7fb7080db10e4e0491acb1dc186340ae7d96693 /gnu | |
parent | 927c2518465579d48315e8e6b5102097c146fece (diff) | |
download | guix-87bc9f022cdd3487e85cf83cf82222315246abf9.tar guix-87bc9f022cdd3487e85cf83cf82222315246abf9.tar.gz |
gnu: ImageMagick: Build reproducibly.
Fixes <https://bugs.gnu.org/38449>.
* gnu/packages/imagemagick.scm (imagemagick)[arguments]: In #:configure-flags,
add "--enable-reproducible-build".
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/imagemagick.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/imagemagick.scm b/gnu/packages/imagemagick.scm index 3c1fe012d0..5287255054 100644 --- a/gnu/packages/imagemagick.scm +++ b/gnu/packages/imagemagick.scm @@ -58,7 +58,11 @@ "0fcbcad95wn0q0pdfl0qgycm30f3a7xhskc0r5icldq6v6l4b3is")))) (build-system gnu-build-system) (arguments - `(#:configure-flags '("--with-frozenpaths" "--without-gcc-arch") + `(#:configure-flags '("--with-frozenpaths" "--without-gcc-arch" + + ;; Do not embed the build date in binaries. + "--enable-reproducible-build") + ;; FIXME: The test suite succeeded before version 6.9.6-2. ;; Try enabling it again with newer releases. #:tests? #f |