gnu: irssi: Return #t from all phases.
authorTobias Geerinckx-Rice <me@tobias.gr>
Sun, 24 Jun 2018 20:21:54 +0000 (22:21 +0200)
committerTobias Geerinckx-Rice <me@tobias.gr>
Tue, 26 Jun 2018 00:17:03 +0000 (02:17 +0200)
* gnu/packages/irc.scm (irssi)[arguments]: Substitute INVOKE for
SYSTEM*.

gnu/packages/irc.scm

index 993102f..84a6a60 100644 (file)
@@ -133,12 +133,11 @@ irssi, but graphical.")
            (lambda* (#:key inputs outputs #:allow-other-keys)
              (let ((out (assoc-ref outputs "out")))
                (setenv "CONFIG_SHELL" (which "bash"))
-               (zero?
-                (system* "./configure"
-                         (string-append "--prefix=" out)
-                         (string-append "--with-proxy")
-                         (string-append "--with-socks")
-                         (string-append "--with-bot")))))))))
+               (invoke "./configure"
+                       (string-append "--prefix=" out)
+                       (string-append "--with-proxy")
+                       (string-append "--with-socks")
+                       (string-append "--with-bot"))))))))
     (inputs
      `(("glib" ,glib)
        ("ncurses" ,ncurses)