guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

19/36: gnu: emacs-ess: Return #t from phases.


From: Tobias Geerinckx-Rice
Subject: 19/36: gnu: emacs-ess: Return #t from phases.
Date: Tue, 19 Jun 2018 23:27:47 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 2f48416f47a1271a4c9f824c1095a97ad9fafa34
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Wed Jun 20 03:29:51 2018 +0200

    gnu: emacs-ess: Return #t from phases.
    
    * gnu/packages/emacs.scm (emacs-ess)[arguments]: Substitute INVOKE for
    SYSTEM* and return #t where otherwise undefined.
---
 gnu/packages/emacs.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 1b65984..ae22a2f 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -4104,14 +4104,15 @@ programming language.")
              (lambda* (#:key inputs #:allow-other-keys)
                (substitute* "Makeconf"
                  (("SHELL = /bin/sh")
-                  (string-append "SHELL = " (which "sh"))))))
+                  (string-append "SHELL = " (which "sh"))))
+               #t))
            ;; FIXME: the texlive-union insists on regenerating fonts.  It 
stores
            ;; them in HOME, so it needs to be writeable.
            (add-before 'build 'set-HOME
              (lambda _ (setenv "HOME" "/tmp") #t))
            (replace 'check
              (lambda _
-               (zero? (system* "make" "test"))))))))
+               (invoke "make" "test")))))))
     (inputs
      `(("emacs" ,emacs-minimal)
        ("r-minimal" ,r-minimal)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]