diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-20 02:36:36 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-20 04:56:29 +0200 |
commit | 67cf588f4fbde7ccab4084293eb7b1ae2e05f025 (patch) | |
tree | 577b81d8eb95e45c161e31808018db5bd7155c36 /gnu | |
parent | d78f1fdc5ddb5d2ac0115ceef52e20ef9b69c9a8 (diff) | |
download | guix-67cf588f4fbde7ccab4084293eb7b1ae2e05f025.tar guix-67cf588f4fbde7ccab4084293eb7b1ae2e05f025.tar.gz |
gnu: emacs-ghub: Return #t from phases.
* gnu/packages/emacs.scm (emacs-ghub)[arguments]: Substitute INVOKE for
SYSTEM*.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 2f85e774fa..b413658710 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -618,7 +618,7 @@ process, passing on the arguments as command line arguments.") (modify-phases %standard-phases (add-before 'install 'make-info (lambda _ - (zero? (system* "make" "info"))))))) + (invoke "make" "info")))))) (native-inputs `(("texinfo" ,texinfo))) (home-page "https://github.com/magit/ghub") |