gnu: mozjs-52: Add configure flag to prevent crash.
* gnu/packages/gnuzilla.scm (mozjs-52)[arguments]: Pass "--disable-jemalloc" to prevent crashes in gnome-shell.
This commit is contained in:
parent
4b2ed6c2a3
commit
6cc147a31b
|
@ -294,7 +294,10 @@ in C/C++.")
|
|||
"--with-system-zlib"
|
||||
|
||||
;; Intl API requires bundled ICU.
|
||||
"--without-intl-api")
|
||||
"--without-intl-api"
|
||||
|
||||
;; Without this gnome-shell will crash at runtime.
|
||||
"--disable-jemalloc")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-and-chdir
|
||||
|
|
Loading…
Reference in New Issue