diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-24 22:21:54 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-26 02:17:03 +0200 |
commit | 19621509dc6137144f813da6765d168b393ef1e0 (patch) | |
tree | 7b7250d0325f386182f132d576d4df2a3d24e36a | |
parent | e90271604aa0b5ffd815f9000ec264a639aeecc8 (diff) | |
download | patches-19621509dc6137144f813da6765d168b393ef1e0.tar patches-19621509dc6137144f813da6765d168b393ef1e0.tar.gz |
gnu: irssi: Return #t from all phases.
* gnu/packages/irc.scm (irssi)[arguments]: Substitute INVOKE for
SYSTEM*.
-rw-r--r-- | gnu/packages/irc.scm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gnu/packages/irc.scm b/gnu/packages/irc.scm index 993102f272..84a6a60ca4 100644 --- a/gnu/packages/irc.scm +++ b/gnu/packages/irc.scm @@ -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) |