guix-commits
[Top][All Lists]
Advanced

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

07/38: gnu: mozjs: Make the quasiquote unconditional.


From: guix-commits
Subject: 07/38: gnu: mozjs: Make the quasiquote unconditional.
Date: Sat, 2 Oct 2021 12:52:38 -0400 (EDT)

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

commit 034459cc67029cc84833e6e98e7ba8749985c904
Author: Maxime Devos <maximedevos@telenet.be>
AuthorDate: Fri Oct 1 16:21:09 2021 +0200

    gnu: mozjs: Make the quasiquote unconditional.
    
    * gnu/packages/nss.scm (mozjs-60)[arguments]<#:configure-flags>: Always use
      quasiquote instead of quote.
    
    Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
---
 gnu/packages/gnuzilla.scm | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm
index 655b0c0..5273fbd 100644
--- a/gnu/packages/gnuzilla.scm
+++ b/gnu/packages/gnuzilla.scm
@@ -370,11 +370,7 @@ in C/C++.")
      `(#:tests? #f ; FIXME: all tests pass, but then the check phase fails 
anyway.
        #:test-target "check-jstests"
        #:configure-flags
-       ;; TODO(core-updates): unconditionally use 'quasiquote
-       ,#~(#$(if (%current-target-system)
-                 #~quasiquote
-                 #~quote)
-           ("--enable-ctypes"
+       ,#~`("--enable-ctypes"
             "--enable-optimize"
             "--enable-pie"
             "--enable-readline"
@@ -391,7 +387,7 @@ in C/C++.")
             ;; This is important because without it gjs will segfault during 
the
             ;; configure phase.  With jemalloc only the standalone mozjs 
console
             ;; will work.
-            "--disable-jemalloc"))
+            "--disable-jemalloc")
        #:phases
        (modify-phases %standard-phases
          ;; Make sure pkg-config will be found.



reply via email to

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