nckx pushed a commit to branch master
in repository guix.
commit ea6a2df77f553346f2060e6ba9fa1f833c1895ab
Author: Tobias Geerinckx-Rice <[email protected]>
AuthorDate: Sun Jan 22 01:00:00 2023 +0100
gnu: libpng-apng: Remove obsolete trailing #t.
* gnu/packages/image.scm (libpng-apng)[arguments]:
Don't explicitly return #t from phases.
---
gnu/packages/image.scm | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index 91d68fa0f8..6b25da28ef 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -213,14 +213,12 @@ library. It supports almost all PNG features and is
extensible.")
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)