gnu: dtach: Return #t from all phases.

* gnu/packages/screen.scm (dtach)[arguments]: Return #t from the custom
install phase.
This commit is contained in:
Mark H Weaver 2018-04-12 03:24:26 -04:00
parent 745e83ca3b
commit 5b80aa5945
No known key found for this signature in database
GPG Key ID: 7CEF29847562C516

View File

@ -87,7 +87,8 @@ view to show two terminals at once.")
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(install-file "dtach" (string-append out "/bin"))
(install-file "dtach.1" (string-append out "/share/man/man1"))))))
(install-file "dtach.1" (string-append out "/share/man/man1"))
#t))))
;; No check target.
#:tests? #f))
(home-page "http://dtach.sourceforge.net/")