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:
Christopher Baines 2025-05-10 21:34:27 +01:00 committed by Andreas Enge
parent 77ac889584
commit 4c5848b661
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -787,11 +787,11 @@ $out/bin/guile --version~%"
(else
''("lib/libc.so")))
(("/[^ ]+/lib/(libc|libh|libm|libpthread|ld)" _ prefix)
(string-append out "/lib/" prefix))
(string-append out "/lib/" prefix)))
,@(if (target-arm32?)
`((substitute* "lib/libpthread.so"
(("/[^ ]+/lib/libpthread_nonshared\\.a") "")))
`()))))))))
`())))))))
(inputs
`(("tar" ,(bootstrap-executable "tar" (%current-system)))
("xz" ,(bootstrap-executable "xz" (%current-system)))