gnu: kbd: Return #t from all phases.
authorMark H Weaver <mhw@netris.org>
Thu, 12 Apr 2018 07:52:40 +0000 (03:52 -0400)
committerMark H Weaver <mhw@netris.org>
Thu, 12 Apr 2018 08:03:04 +0000 (04:03 -0400)
* gnu/packages/linux.scm (kbd)[arguments]: Return #t from all phases.

gnu/packages/linux.scm

index 5543d23..254cf89 100644 (file)
@@ -1900,7 +1900,8 @@ system.")
                  (("gzip")
                   (string-append gzip "/bin/gzip"))
                  (("bzip2")
-                  (string-append bzip2 "/bin/bzip2"))))))
+                  (string-append bzip2 "/bin/bzip2")))
+               #t)))
          (add-after 'install 'post-install
            (lambda* (#:key outputs #:allow-other-keys)
              ;; Make sure these programs find their comrades.
@@ -1909,7 +1910,8 @@ system.")
                (for-each (lambda (prog)
                            (wrap-program (string-append bin "/" prog)
                              `("PATH" ":" prefix (,bin))))
-                         '("unicode_start" "unicode_stop"))))))))
+                         '("unicode_start" "unicode_stop"))
+               #t))))))
     (inputs `(("check" ,check)
               ("gzip" ,gzip)
               ("bzip2" ,bzip2)