mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: librewolf: Dedent #:configure-flags
* gnu/packages/librewolf.scm (librewolf): [#:configure-flags]: Dedent for readability. Change-Id: I79e945ac6cf0b67fc5aae6d6f4669e6af47f30c2
This commit is contained in:
parent
e0ea819c43
commit
d12d2bc72e
1 changed files with 34 additions and 34 deletions
|
@ -221,7 +221,8 @@
|
|||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:configure-flags #~(let ((clang #$(this-package-native-input "clang")))
|
||||
#:configure-flags
|
||||
#~(let ((clang #$(this-package-native-input "clang")))
|
||||
;; Configuration.
|
||||
`("--enable-jemalloc"
|
||||
"--enable-system-pixman"
|
||||
|
@ -248,15 +249,14 @@
|
|||
;; Features
|
||||
"--enable-pulseaudio"
|
||||
|
||||
;; switch only available on x86, whereas EME
|
||||
;; is not supported on other targets
|
||||
;; switch only available on x86, whereas EME is not supported on
|
||||
;; other targets
|
||||
,@(if #$(target-x86?) '("--disable-eme") '())
|
||||
|
||||
;; Build details
|
||||
"--disable-elf-hack"
|
||||
;; Don't attempt to download toolchains.
|
||||
;; Upstream enables this, adding the flag
|
||||
;; ensures we don't use network in the build
|
||||
;; Don't attempt to download toolchains. Upstream enables this,
|
||||
;; adding the flag ensures we don't use network in the build
|
||||
;; environment.
|
||||
"--disable-bootstrap"
|
||||
"--enable-strip"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue