gnu: gpodder: Only return #t when needed.

* gnu/packages/gpodder.scm (gpodder)[arguments]: Return #t from
'do-not-run-msgmerge. Don't return #t from 'install.
master
Efraim Flashner 2019-06-13 09:35:08 +03:00
parent 2bb078efe5
commit e22edabbb5
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 3 additions and 3 deletions

View File

@ -81,12 +81,12 @@
(for-each
(lambda (f)
(chmod f #o664))
(find-files "po"))))
(find-files "po"))
#t))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(setenv "PREFIX" (assoc-ref outputs "out"))
(invoke "make" "install")
#t))
(invoke "make" "install")))
(add-after 'install 'wrap-gpodder
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out"))