diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-21 17:47:06 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-22 00:20:12 +0200 |
commit | a0c5dafcc35ecdd877dac12750b37852c3bcf001 (patch) | |
tree | f2730cec28aa7c57c3448d66df25ff8f50552a40 /gnu/packages/zile.scm | |
parent | 1a135896b3c8bca17f70c2b90caaa205cbd781ec (diff) | |
download | guix-a0c5dafcc35ecdd877dac12750b37852c3bcf001.tar guix-a0c5dafcc35ecdd877dac12750b37852c3bcf001.tar.gz |
gnu: zile-on-guile: Return #t from all phases.
* gnu/packages/zile.scm (zile-on-guile)[arguments]: Substitute INVOKE
for SYSTEM*.
Diffstat (limited to 'gnu/packages/zile.scm')
-rw-r--r-- | gnu/packages/zile.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/zile.scm b/gnu/packages/zile.scm index 858117de28..eea0dba272 100644 --- a/gnu/packages/zile.scm +++ b/gnu/packages/zile.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2012, 2013, 2017, 2018 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> ;;; ;;; This file is part of GNU Guix. ;;; @@ -122,10 +123,10 @@ default Emacs configuration, but it carries a much lighter feature set.") (chmod file #o755)) (find-files ".")) (patch-shebang "gnulib/gnulib-tool") - (zero? (system* "sh" "./bootstrap" - "--gnulib-srcdir=gnulib" - "--skip-git" "--skip-po" - "--verbose")))) + (invoke "sh" "./bootstrap" + "--gnulib-srcdir=gnulib" + "--skip-git" "--skip-po" + "--verbose"))) (add-after 'install 'wrap-command (lambda* (#:key outputs #:allow-other-keys) ;; Add zile.scm to the search path. |