mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-05 10:20:14 +01:00
gnu: gcc-static: Make sure #:modules is not overridden by the inherited GCC.
This fixes a regression introduced by56c833ea28
and25bc0f34c6
where #:modules became ineffective. * gnu/packages/make-bootstrap.scm (%gcc-static)[arguments]: Prepend the required modules to those inherited from GCC-5. While at it, do not splice in the inherited arguments.
This commit is contained in:
parent
aebcbb27bc
commit
313bf502b5
1 changed files with 44 additions and 44 deletions
|
@ -464,12 +464,12 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
|
|||
(name "gcc-static")
|
||||
(outputs '("out")) ; all in one
|
||||
(arguments
|
||||
`(#:modules ((guix build utils)
|
||||
(guix build gnu-build-system)
|
||||
(srfi srfi-1)
|
||||
(substitute-keyword-arguments (package-arguments gcc-5)
|
||||
((#:modules modules %gnu-build-system-modules)
|
||||
`((srfi srfi-1)
|
||||
(srfi srfi-26)
|
||||
(ice-9 regex))
|
||||
,@(substitute-keyword-arguments (package-arguments gcc-5)
|
||||
(ice-9 regex)
|
||||
,@modules))
|
||||
((#:guile _) #f)
|
||||
((#:implicit-inputs? _) #t)
|
||||
((#:configure-flags flags)
|
||||
|
@ -511,7 +511,7 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
|
|||
(find-files "gcc/config"
|
||||
"^gnu-user.*\\.h$"))
|
||||
((" -lgcc_s}}") "}}"))
|
||||
#t)))))))
|
||||
#t))))))
|
||||
(inputs
|
||||
`(("zlib:static" ,zlib "static")
|
||||
("isl:static" ,isl-0.18 "static")
|
||||
|
|
Loading…
Add table
Reference in a new issue