andreas pushed a commit to branch core-packages-team
in repository guix.
commit c29749957e34369fd321bc3fd749226df7207ef6
Author: Christopher Baines <[email protected]>
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)))