distro: Add missing `package-with-bootstrap-guile'.
* distro/packages/base.scm (binutils-final): Add missing `package-with-bootstrap-guile'.
This commit is contained in:
parent
d1acf1fd4a
commit
a48dddfe9c
1 changed files with 8 additions and 7 deletions
|
@ -876,13 +876,14 @@ exec ~a/bin/~a-gcc -B~a/lib -Wl,-dynamic-linker -Wl,~a/~a \"$@\"~%"
|
||||||
,@(fold alist-delete %boot1-inputs '("libc" "gcc"))))
|
,@(fold alist-delete %boot1-inputs '("libc" "gcc"))))
|
||||||
|
|
||||||
(define binutils-final
|
(define binutils-final
|
||||||
(package (inherit binutils)
|
(package-with-bootstrap-guile
|
||||||
(arguments
|
(package (inherit binutils)
|
||||||
(lambda (system)
|
(arguments
|
||||||
`(#:guile ,%bootstrap-guile
|
(lambda (system)
|
||||||
#:implicit-inputs? #f
|
`(#:guile ,%bootstrap-guile
|
||||||
,@(package-arguments binutils))))
|
#:implicit-inputs? #f
|
||||||
(inputs %boot2-inputs)))
|
,@(package-arguments binutils))))
|
||||||
|
(inputs %boot2-inputs))))
|
||||||
|
|
||||||
(define-public gcc-final
|
(define-public gcc-final
|
||||||
;; The final GCC.
|
;; The final GCC.
|
||||||
|
|
Reference in a new issue