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:
Tobias Geerinckx-Rice 2023-01-22 01:00:00 +01:00
parent 2cea54ba62
commit ea6a2df77f
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -213,14 +213,12 @@ (define (apply-patch file)
apng.gz)
(invoke "sh" "-c"
(string-append "gunzip < " apng.gz " > the-patch"))
(apply-patch "the-patch")
#t)))
(apply-patch "the-patch"))))
(add-before 'configure 'no-checks
(lambda _
(substitute* "Makefile.in"
(("^scripts/symbols.chk") "")
(("check: scripts/symbols.chk") ""))
#t)))))
(("check: scripts/symbols.chk") "")))))))
(inputs
`(("apng" ,(origin
(method url-fetch)