diff options
| author | Christopher Baines <mail@cbaines.net> | 2025-05-10 21:34:27 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:32 +0200 |
| commit | 4c5848b661f3f738b8424204419956653e8bbe57 (patch) | |
| tree | f8e75e3970f6c1753ee4e6a1b30d9ceebbc96e22 /gnu/packages/bootstrap.scm | |
| parent | 77ac889584e216a4d2b66f69ecd435abe072f95f (diff) | |
gnu: bootstrap: %bootstrap-glibc: Fix linking on armhf-linux.
* gnu/packages/bootstrap.scm (%bootstrap-glibc)[arguments]<#:builder>:
Correct parentheses.
Change-Id: Ie0f55cff88ebc8ab1fba72e5a8abfa711f94731f
Diffstat (limited to 'gnu/packages/bootstrap.scm')
| -rw-r--r-- | gnu/packages/bootstrap.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm index 3f634892e1e..51c4acf2eec 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))) |
