diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-26 04:15:19 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-26 04:17:48 +0200 |
commit | 8cd14622167e137a26c3a6eb43943a68c8b006ce (patch) | |
tree | 05fe3390873793555ed73845ad255d3758a16929 | |
parent | 6c91c0f3462207ff331e1caf3ba32304be218727 (diff) | |
download | guix-8cd14622167e137a26c3a6eb43943a68c8b006ce.tar guix-8cd14622167e137a26c3a6eb43943a68c8b006ce.tar.gz |
gnu: newsboat: Return #t from phases.
* gnu/packages/syndication.scm (newsboat)[arguments]: Substitute INVOKE
for SYSTEM*.
-rw-r--r-- | gnu/packages/syndication.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/syndication.scm b/gnu/packages/syndication.scm index 27b49895e2..b4b8cda709 100644 --- a/gnu/packages/syndication.scm +++ b/gnu/packages/syndication.scm @@ -60,7 +60,7 @@ (delete 'configure) ; no configure script (add-after 'build 'build-documentation (lambda _ - (zero? (system* "make" "doc"))))) + (invoke "make" "doc")))) #:make-flags (list (string-append "prefix=" (assoc-ref %outputs "out"))) #:test-target "test")) |