gnu: gegl: Use 'modify-phases' syntax.
* gnu/packages/gimp.scm (gegl)[arguments]: Use the 'modify-phases' syntax.
This commit is contained in:
parent
b0a21b56db
commit
3616ff51b3
|
@ -83,13 +83,13 @@ provided as well as the framework to add new color models and data types.")
|
|||
(patches (search-patches "gegl-CVE-2012-4433.patch"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(;; More than just the one test disabled below now fails; disable them
|
||||
'(;; More than just the one test disabled below now fails; disable them
|
||||
;; all according to the rationale given below.
|
||||
#:tests? #f
|
||||
#:configure-flags '("LDFLAGS=-lm")
|
||||
#:phases
|
||||
(alist-cons-before
|
||||
'build 'pre-build
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'build 'pre-build
|
||||
(lambda _
|
||||
;; This test program seems to crash on exit. Specifically, whilst
|
||||
;; g_object_unreffing bufferA and bufferB - This seems to be a bug
|
||||
|
@ -102,8 +102,8 @@ provided as well as the framework to add new color models and data types.")
|
|||
(("g_object_unref \\(buffer.\\);") ""))
|
||||
|
||||
(substitute* "tests/compositions/Makefile"
|
||||
(("/bin/sh") (which "sh"))))
|
||||
%standard-phases)))
|
||||
(("/bin/sh") (which "sh")))
|
||||
#t)))))
|
||||
(inputs
|
||||
`(("babl" ,babl)
|
||||
("glib" ,glib)
|
||||
|
|
Loading…
Reference in New Issue