guix-commits
[Top][All Lists]
Advanced

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

10/23: gnu: hop: Return #t from phases.


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

nckx pushed a commit to branch master
in repository guix.

commit 24674e6141c089d8b4f1ece8cade44656853185d
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Tue Jun 26 16:33:29 2018 +0200

    gnu: hop: Return #t from phases.
    
    * gnu/packages/scheme.scm (hop)[arguments]: Substitute INVOKE for
    SYSTEM*.
---
 gnu/packages/scheme.scm | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm
index 0b15ea8..ddc4014 100644
--- a/gnu/packages/scheme.scm
+++ b/gnu/packages/scheme.scm
@@ -314,15 +314,14 @@ Scheme and C programs and between Scheme and Java 
programs.")
          (replace 'configure
            (lambda* (#:key inputs outputs #:allow-other-keys)
              (let ((out (assoc-ref outputs "out")))
-               (zero?
-                (system* "./configure"
-                         (string-append "--prefix=" out)
-                         (string-append "--blflags="
-                                        ;; user flags completely override 
useful
-                                        ;; default flags, so repeat them here.
-                                        "-copt \\$(CPICFLAGS) "
-                                        "-L \\$(BUILDLIBDIR) "
-                                        "-ldopt -Wl,-rpath," out 
"/lib")))))))))
+               (invoke "./configure"
+                       (string-append "--prefix=" out)
+                       (string-append "--blflags="
+                                      ;; user flags completely override useful
+                                      ;; default flags, so repeat them here.
+                                      "-copt \\$(CPICFLAGS) "
+                                      "-L \\$(BUILDLIBDIR) "
+                                      "-ldopt -Wl,-rpath," out "/lib"))))))))
     (inputs `(("avahi" ,avahi)
               ("bigloo" ,bigloo)
               ("libgc" ,libgc)



reply via email to

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