diff options
author | Ian Eure <ian@retrospec.tv> | 2025-04-20 17:18:19 -0700 |
---|---|---|
committer | Ian Eure <ian@retrospec.tv> | 2025-04-20 19:52:56 -0700 |
commit | 0c070aefa002b7e1ad91bf164f6b864ff486c9bd (patch) | |
tree | 11eff681cb252648d4b685ab05df2e6c11c96ec3 | |
parent | 96a884facf451712b2ea165cd0b9cfc35f791269 (diff) | |
download | guix-0c070aefa002b7e1ad91bf164f6b864ff486c9bd.tar.gz guix-0c070aefa002b7e1ad91bf164f6b864ff486c9bd.zip |
gnu: librewolf: Reorder flags.
* gnu/packages/librewolf.scm (librewolf): [#:configure-flags] Reorder.
Change-Id: I25fe8ccc63f67cd8cfe5b1f5980e9cf230d71b64
-rw-r--r-- | gnu/packages/librewolf.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/librewolf.scm b/gnu/packages/librewolf.scm index 493d5419e2..6ce92a975b 100644 --- a/gnu/packages/librewolf.scm +++ b/gnu/packages/librewolf.scm @@ -256,11 +256,11 @@ ;; Build details "--disable-elf-hack" + "--enable-strip" ;; 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")) + "--disable-bootstrap")) #:imported-modules %cargo-utils-modules #:modules `((ice-9 regex) (ice-9 string-fun) |