mhw pushed a commit to branch core-updates
in repository guix.

commit 5b80aa5945b71f7eecac1254177a5300534c3c7e
Author: Mark H Weaver <m...@netris.org>
Date:   Thu Apr 12 03:24:26 2018 -0400

    gnu: dtach: Return #t from all phases.
    
    * gnu/packages/screen.scm (dtach)[arguments]: Return #t from the custom
    install phase.
---
 gnu/packages/screen.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/screen.scm b/gnu/packages/screen.scm
index 5622d37..19dfd7d 100644
--- a/gnu/packages/screen.scm
+++ b/gnu/packages/screen.scm
@@ -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/";)

Reply via email to