mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: bootstrap: %bootstrap-glibc: Fix linking on armhf-linux.
* gnu/packages/bootstrap.scm (%bootstrap-glibc)[arguments]<#:builder>: Correct parentheses. Change-Id: Ie0f55cff88ebc8ab1fba72e5a8abfa711f94731f
This commit is contained in:
parent
77ac889584
commit
4c5848b661
1 changed files with 5 additions and 5 deletions
|
@ -787,11 +787,11 @@ $out/bin/guile --version~%"
|
||||||
(else
|
(else
|
||||||
''("lib/libc.so")))
|
''("lib/libc.so")))
|
||||||
(("/[^ ]+/lib/(libc|libh|libm|libpthread|ld)" _ prefix)
|
(("/[^ ]+/lib/(libc|libh|libm|libpthread|ld)" _ prefix)
|
||||||
(string-append out "/lib/" prefix))
|
(string-append out "/lib/" prefix)))
|
||||||
,@(if (target-arm32?)
|
,@(if (target-arm32?)
|
||||||
`((substitute* "lib/libpthread.so"
|
`((substitute* "lib/libpthread.so"
|
||||||
(("/[^ ]+/lib/libpthread_nonshared\\.a") "")))
|
(("/[^ ]+/lib/libpthread_nonshared\\.a") "")))
|
||||||
`()))))))))
|
`())))))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("tar" ,(bootstrap-executable "tar" (%current-system)))
|
`(("tar" ,(bootstrap-executable "tar" (%current-system)))
|
||||||
("xz" ,(bootstrap-executable "xz" (%current-system)))
|
("xz" ,(bootstrap-executable "xz" (%current-system)))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue