guix-commits
[Top][All Lists]
Advanced

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

07/23: gnu: aegis: Return #t from phases.


From: Tobias Geerinckx-Rice
Subject: 07/23: gnu: aegis: Return #t from phases.
Date: Wed, 27 Jun 2018 07:01:50 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 923e2d249e26760862b602fca0edecddecef3e57
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Tue Jun 26 16:20:25 2018 +0200

    gnu: aegis: Return #t from phases.
    
    * gnu/packages/version-control.scm (aegis)[arguments]: Substitute INVOKE
    for SYSTEM*. Return #t rather than undefined from phases.
---
 gnu/packages/version-control.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index cdec980..fa36f87 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -1465,7 +1465,8 @@ accessed and migrated on modern systems.")
                                      "libaegis/getpw_cache.cc")
                                    (find-files "test" "\\.sh"))
                            (("/bin/sh") (which "sh")))
-              (setenv "SH" (which "sh"))))
+              (setenv "SH" (which "sh"))
+              #t))
          (replace 'check
            (lambda _
              (let ((home (string-append (getcwd) "/my-new-home")))
@@ -1473,7 +1474,7 @@ accessed and migrated on modern systems.")
                (mkdir home)
                (setenv "HOME" home)
 
-               ;; This test assumes that  flex has been symlinked to "lex".
+               ;; This test assumes that flex has been symlinked to "lex".
                (substitute* "test/00/t0011a.sh"
                  (("type lex")  "type flex"))
 
@@ -1486,7 +1487,7 @@ accessed and migrated on modern systems.")
                       "01/t0196a"))
 
                ;; The author decided to call the check rule "sure".
-               (zero? (system* "make" "sure"))))))))
+               (invoke "make" "sure")))))))
     (home-page "http://aegis.sourceforge.net";)
     (synopsis "Project change supervisor")
     (description "Aegis is a project change supervisor, and performs some of



reply via email to

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