[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: imagemagick: Hard-code delegate paths.
From: |
Eric Bavier |
Subject: |
01/01: gnu: imagemagick: Hard-code delegate paths. |
Date: |
Wed, 07 Oct 2015 01:24:59 +0000 |
bavier pushed a commit to branch master
in repository guix.
commit 3cbf1204ef733881916c4667f05c7a7968bb658d
Author: Eric Bavier <address@hidden>
Date: Mon Oct 5 22:16:40 2015 -0500
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.
---
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 8e17684..f154e19 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)