guix_mirror_bot pushed a commit to branch core-packages-team in repository guix.
commit 7fc526f14e70e6f74782b364a456c72094077334 Author: Christopher Baines <m...@cbaines.net> AuthorDate: Sat May 10 21:34:27 2025 +0100 gnu: bootstrap: %bootstrap-glibc: Fix linking on armhf-linux. * gnu/packages/bootstrap.scm (%bootstrap-glibc)[arguments]<#:builder>: Correct parentheses. Change-Id: Ie0f55cff88ebc8ab1fba72e5a8abfa711f94731f --- gnu/packages/bootstrap.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm index 3f634892e1..51c4acf2ee 100644 --- a/gnu/packages/bootstrap.scm +++ b/gnu/packages/bootstrap.scm @@ -787,11 +787,11 @@ $out/bin/guile --version~%" (else ''("lib/libc.so"))) (("/[^ ]+/lib/(libc|libh|libm|libpthread|ld)" _ prefix) - (string-append out "/lib/" prefix)) - ,@(if (target-arm32?) - `((substitute* "lib/libpthread.so" - (("/[^ ]+/lib/libpthread_nonshared\\.a") ""))) - `())))))))) + (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)))