From mboxrd@z Thu Jan 1 00:00:00 1970 From: ericbavier@openmailbox.org Subject: [PATCH] gnu: imagemagick: Hard-code delegate paths. Date: Mon, 5 Oct 2015 22:22:46 -0500 Message-ID: <1444101766-10566-1-git-send-email-ericbavier@openmailbox.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48187) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjNzy-0002au-Rh for guix-devel@gnu.org; Tue, 06 Oct 2015 04:53:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZjNzu-0000Bt-RD for guix-devel@gnu.org; Tue, 06 Oct 2015 04:53:26 -0400 Received: from smtp10.openmailbox.org ([62.4.1.44]:40069) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjNzu-0000Ai-IS for guix-devel@gnu.org; Tue, 06 Oct 2015 04:53:22 -0400 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org Cc: Eric Bavier From: Eric Bavier 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 file changed, 2 insertions(+), 1 deletion(-) 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) -- 2.4.3