guix-commits
[Top][All Lists]
Advanced

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

02/15: gnu: chez-fmt: Return #t from all phases.


From: guix-commits
Subject: 02/15: gnu: chez-fmt: Return #t from all phases.
Date: Sat, 16 Feb 2019 14:52:34 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit bd86f7dbdf366c52214cda824246b2e642d32a96
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Fri Feb 15 17:15:07 2019 +0100

    gnu: chez-fmt: Return #t from all phases.
    
    * gnu/packages/chez.scm (chez-fmt)[arguments]: Always return #t from phases.
    Substitute INVOKE for SYSTEM*.
---
 gnu/packages/chez.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/chez.scm b/gnu/packages/chez.scm
index c99f8a8..cbbca34 100644
--- a/gnu/packages/chez.scm
+++ b/gnu/packages/chez.scm
@@ -515,10 +515,10 @@ syntax, with various aliases for commonly used patterns.")
          (replace 'configure ,chez-configure)
          (replace 'build
            (lambda* (#:key (make-flags '()) #:allow-other-keys)
-             (zero? (apply system* "make" "chez-build" make-flags))))
+             (apply invoke "make" "chez-build" make-flags)))
          (replace 'install
            (lambda* (#:key (make-flags '()) #:allow-other-keys)
-             (zero? (apply system* "make" "chez-install" make-flags)))))))
+             (apply invoke "make" "chez-install" make-flags))))))
     (home-page "http://synthcode.com/scheme/fmt";)
     (synopsis "Combinator formatting library for Chez Scheme")
     (description "This package provides a library of procedures for



reply via email to

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