Archived
1
0
Fork 0

gnu: mozjs@38: Use invoke.

* gnu/packages/gnuzilla.scm (mozjs-38)[arguments]: Use invoke in the custom
configure phase.
This commit is contained in:
Mark H Weaver 2018-03-23 03:16:58 -04:00
parent 6073ef7508
commit 5f70b6d4e8
No known key found for this signature in database
GPG key ID: 7CEF29847562C516

View file

@ -225,7 +225,7 @@ in C/C++.")
(chdir "js/src") (chdir "js/src")
(setenv "SHELL" (which "sh")) (setenv "SHELL" (which "sh"))
(setenv "CONFIG_SHELL" (which "sh")) (setenv "CONFIG_SHELL" (which "sh"))
(zero? (system* "./configure" (invoke "./configure"
(string-append "--prefix=" out) (string-append "--prefix=" out)
"--enable-ctypes" "--enable-ctypes"
"--enable-gcgenerational" "--enable-gcgenerational"
@ -241,7 +241,7 @@ in C/C++.")
"--with-system-zlib" "--with-system-zlib"
;; Intl API requires bundled ICU. ;; Intl API requires bundled ICU.
"--without-intl-api")))))))) "--without-intl-api")))))))
(native-inputs (native-inputs
`(("perl" ,perl) `(("perl" ,perl)
("pkg-config" ,pkg-config) ("pkg-config" ,pkg-config)