guix-commits
[Top][All Lists]
Advanced

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

45/66: gnu: address@hidden: Use invoke.


From: Mark H. Weaver
Subject: 45/66: gnu: address@hidden: Use invoke.
Date: Fri, 23 Mar 2018 04:46:46 -0400 (EDT)

mhw pushed a commit to branch core-updates
in repository guix.

commit 6073ef75083c3faedaf2a889659e4c61c7b25090
Author: Mark H Weaver <address@hidden>
Date:   Fri Mar 23 03:15:49 2018 -0400

    gnu: address@hidden: Use invoke.
    
    * gnu/packages/gnuzilla.scm (mozjs-24)[arguments]: Use invoke in the custom
    configure phase.
---
 gnu/packages/gnuzilla.scm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm
index 17a6719..0f75319 100644
--- a/gnu/packages/gnuzilla.scm
+++ b/gnu/packages/gnuzilla.scm
@@ -153,15 +153,15 @@ in C/C++.")
                   ;; configure fails if it is followed by SHELL and 
CONFIG_SHELL
                   (setenv "SHELL" (which "sh"))
                   (setenv "CONFIG_SHELL" (which "sh"))
-                  (zero? (system* "./configure"
-                                  (string-append "--prefix=" out)
-                                  "--with-system-nspr"
-                                  "--enable-system-ffi"
-                                  "--enable-threadsafe"
-                                  ,@(if (string=? "aarch64-linux"
-                                                  (%current-system))
-                                      '("--host=aarch64-unknown-linux-gnu")
-                                      '()))))))))))
+                  (invoke "./configure"
+                          (string-append "--prefix=" out)
+                          "--with-system-nspr"
+                          "--enable-system-ffi"
+                          "--enable-threadsafe"
+                          ,@(if (string=? "aarch64-linux"
+                                          (%current-system))
+                                '("--host=aarch64-unknown-linux-gnu")
+                                '())))))))))
     (inputs
      `(("libffi" ,libffi)
        ("zlib" ,zlib)))))



reply via email to

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