gnu: imagemagick: Return #t from all phases.

* gnu/packages/imagemagick.scm (imagemagick)[arguments]: Return #t from
the 'pre-build' and 'strip-configure-xml' phases.
master
Mark H Weaver 2018-03-23 02:47:19 -04:00
parent 8f52d8982b
commit a440d01ae0
No known key found for this signature in database
GPG Key ID: 7CEF29847562C516
1 changed files with 4 additions and 2 deletions

View File

@ -77,7 +77,8 @@
(let ((doc (assoc-ref outputs "doc")))
(string-append "DOCUMENTATION_PATH = "
doc "/share/doc/"
,name "-" ,version "\n"))))))
,name "-" ,version "\n"))))
#t))
(add-before
'configure 'strip-configure-xml
(lambda _
@ -87,7 +88,8 @@
;; include --docdir, and thus retain a reference to the
;; 'doc' output.
(("@CONFIGURE_ARGS@")
"not recorded")))))))
"not recorded"))
#t)))))
;; TODO: Add Jasper etc.
(inputs `(("fftw" ,fftw)
("graphviz" ,graphviz)