diff options
author | Eric Bavier <bavier@member.fsf.org> | 2015-10-05 22:16:40 -0500 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2015-10-06 15:31:23 -0500 |
commit | 3cbf1204ef733881916c4667f05c7a7968bb658d (patch) | |
tree | 0995c15c90e47740dd8dec49e3d6338e45018214 /gnu/packages/imagemagick.scm | |
parent | cf4e7083ed1bc89b9585f0121ebb6c56c291d0ad (diff) | |
download | patches-3cbf1204ef733881916c4667f05c7a7968bb658d.tar patches-3cbf1204ef733881916c4667f05c7a7968bb658d.tar.gz |
gnu: imagemagick: Hard-code delegate paths.
If --with-frozenpaths is given, then configure will retain absolute paths
discovered for delegate programs, otherwise they are discarded.
* gnu/packages/imagemagick.scm (imagemagick)[arguments]: Add
'--with-frozenpaths' to #:configure-flags.
Diffstat (limited to 'gnu/packages/imagemagick.scm')
-rw-r--r-- | gnu/packages/imagemagick.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/imagemagick.scm b/gnu/packages/imagemagick.scm index 8e176845e1..f154e19d35 100644 --- a/gnu/packages/imagemagick.scm +++ b/gnu/packages/imagemagick.scm @@ -49,7 +49,8 @@ (patches (list (search-patch "imagemagick-test-segv.patch"))))) (build-system gnu-build-system) (arguments - `(#:phases (modify-phases %standard-phases + `(#:configure-flags '("--with-frozenpaths") + #:phases (modify-phases %standard-phases (add-before 'build 'pre-build (lambda* (#:key outputs #:allow-other-keys) |