cbaines pushed a commit to branch master
in repository guix.

commit 72ec11d24f34104efce0d91050a3faba4e2c7242
Author: r0man <[email protected]>
AuthorDate: Sun Feb 5 11:01:17 2023 +0100

    gnu: icecat: Remove unsupported --disable-eme option on aarch64.
    
    * gnu/packages/gnuzilla.scm (icecat): Remove unsupported --disable-eme 
option
    on aarch64.
    
    Signed-off-by: Christopher Baines <[email protected]>
---
 gnu/packages/gnuzilla.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm
index 5fb9afa325..5a2e716042 100644
--- a/gnu/packages/gnuzilla.scm
+++ b/gnu/packages/gnuzilla.scm
@@ -771,7 +771,8 @@ variable defined below.  It requires guile-json to be 
installed."
          "--disable-tests"
          "--disable-updater"
          "--disable-crashreporter"
-         "--disable-eme"
+         ;; The --disable-eme option is not available on aarch64.
+         #$(if (target-aarch64?) "" "--disable-eme")
 
          ;; Building with debugging symbols takes ~5GiB, so disable it.
          "--disable-debug"

Reply via email to