diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-20 03:01:26 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-20 04:56:30 +0200 |
commit | 8bc1967503a12fc4bbd79fdb8cfb9c68f062cccc (patch) | |
tree | 97614867e08fc79b9aa34f6275da039d0e9661bf /gnu/packages | |
parent | f9299da92a4822cbb3e85c976734990fdf486e18 (diff) | |
download | guix-8bc1967503a12fc4bbd79fdb8cfb9c68f062cccc.tar.gz guix-8bc1967503a12fc4bbd79fdb8cfb9c68f062cccc.zip |
gnu: emacs-graphviz-dot-mode: Return #t from phases.
* gnu/packages/emacs.scm (emacs-graphviz-dot-mode)[arguments]:
Substitute INVOKE for SYSTEM*.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/emacs.scm | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 0681c7e3b0..6c0f1a15d3 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1454,13 +1454,12 @@ Maps directly inside Emacs.") (substitute* "Makefile" (("\\/usr\\/bin\\/gzip") (string-append (assoc-ref inputs "gzip") "/bin/gzip"))) - (zero? - (system* "make" - "clean" - "info" - (string-append "TEXINFODIR=" - (assoc-ref inputs "texinfo") - "/bin")))))) + (invoke "make" + "clean" + "info" + (string-append "TEXINFODIR=" + (assoc-ref inputs "texinfo") + "/bin"))))) (add-after 'install 'install-info (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) |