guix_mirror_bot pushed a commit to branch bootstrap-team in repository guix.
commit d94894407be8c11a802c6b514ce2088ea3d18b9a Author: Efraim Flashner <[email protected]> AuthorDate: Thu Feb 5 17:22:37 2026 +0200 gnu: musl-boot0: Only install the headers in /include. * gnu/packages/commencement.scm (musl-boot0)[arguments]: Adjust the 'install phase. Change-Id: I1cd8f0fa517a9b6097abbb417bafe59cdde4bfe8 --- gnu/packages/commencement.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index 5b30bf3e75..0a149ce5b4 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -1011,9 +1011,10 @@ MesCC-Tools), and finally M2-Planet.") ;; Instead of checking if the header already exists ;; install them in a 'backwards' order, so the ;; preferred one never ends up overridden. - (find-files "obj/include/bits") - (find-files "arch/generic/bits") - (find-files (string-append "arch/" arch "/bits")))) + (find-files "obj/include/bits" "\\.h$") + (find-files "arch/generic/bits" "\\.h$") + (find-files + (string-append "arch/" arch "/bits") "\\.h$"))) (when (file-exists? (string-append lib "/libc.so")) (symlink "libc.so" (string-append lib "/ld-musl-" arch ".so.1")))))))))))
