gnu: libpng-apng: Remove obsolete trailing #t.
* gnu/packages/image.scm (libpng-apng)[arguments]: Don't explicitly return #t from phases.
This commit is contained in:
parent
2cea54ba62
commit
ea6a2df77f
1 changed files with 2 additions and 4 deletions
|
@ -213,14 +213,12 @@ library. It supports almost all PNG features and is extensible.")
|
||||||
apng.gz)
|
apng.gz)
|
||||||
(invoke "sh" "-c"
|
(invoke "sh" "-c"
|
||||||
(string-append "gunzip < " apng.gz " > the-patch"))
|
(string-append "gunzip < " apng.gz " > the-patch"))
|
||||||
(apply-patch "the-patch")
|
(apply-patch "the-patch"))))
|
||||||
#t)))
|
|
||||||
(add-before 'configure 'no-checks
|
(add-before 'configure 'no-checks
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "Makefile.in"
|
(substitute* "Makefile.in"
|
||||||
(("^scripts/symbols.chk") "")
|
(("^scripts/symbols.chk") "")
|
||||||
(("check: scripts/symbols.chk") ""))
|
(("check: scripts/symbols.chk") "")))))))
|
||||||
#t)))))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("apng" ,(origin
|
`(("apng" ,(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
|
Reference in a new issue