gnu: librewolf: Fix building on aarch64-linux.
* gnu/packages/librewolf.scm (librewolf)[arguments]: On non-x86-linux systems the "--disable-eme" switch is not available because EME is not available. Change-Id: I0f397570249b1bc6a0182d2744a8d3c459c1bafa Signed-off-by: Andreas Enge <andreas@enge.fr>
parent
ff9675862c
commit
13f0f52314
|
@ -22,6 +22,7 @@
|
||||||
;;; Copyright © 2022 Pierre Langlois <pierre.langlois@gmx.com>
|
;;; Copyright © 2022 Pierre Langlois <pierre.langlois@gmx.com>
|
||||||
;;; Copyright © 2023 Tomas Volf <wolf@wolfsden.cz>
|
;;; Copyright © 2023 Tomas Volf <wolf@wolfsden.cz>
|
||||||
;;; Copyright © 2023 Ian Eure <ian@retrospec.tv>
|
;;; Copyright © 2023 Ian Eure <ian@retrospec.tv>
|
||||||
|
;;; Copyright © 2024 Remco van 't Veer <remco@remworks.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -261,7 +262,10 @@
|
||||||
"--disable-crashreporter"
|
"--disable-crashreporter"
|
||||||
"--allow-addon-sideload"
|
"--allow-addon-sideload"
|
||||||
"--with-unsigned-addon-scopes=app,system"
|
"--with-unsigned-addon-scopes=app,system"
|
||||||
"--disable-eme"
|
|
||||||
|
;; switch only available on x86, whereas EME
|
||||||
|
;; is not supported on other targets
|
||||||
|
,@(if #$(target-x86?) '("--disable-eme") '())
|
||||||
|
|
||||||
;; Build details
|
;; Build details
|
||||||
"--disable-debug"
|
"--disable-debug"
|
||||||
|
|
Reference in New Issue