diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2026-02-05 17:22:37 +0200 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2026-02-05 17:22:37 +0200 |
| commit | d94894407be8c11a802c6b514ce2088ea3d18b9a (patch) | |
| tree | 24eb9f9bbd4b84b0e62ae034dc48ab1a8a42321e | |
| parent | 69acaf4ad6f6990b8b15bfe1dc7aabdb206e67d3 (diff) | |
gnu: musl-boot0: Only install the headers in /include.
* gnu/packages/commencement.scm (musl-boot0)[arguments]: Adjust the
'install phase.
Change-Id: I1cd8f0fa517a9b6097abbb417bafe59cdde4bfe8
| -rw-r--r-- | gnu/packages/commencement.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index 5b30bf3e75b..0a149ce5b40 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm | |||
| @@ -1011,9 +1011,10 @@ MesCC-Tools), and finally M2-Planet.") | |||
| 1011 | ;; Instead of checking if the header already exists | 1011 | ;; Instead of checking if the header already exists |
| 1012 | ;; install them in a 'backwards' order, so the | 1012 | ;; install them in a 'backwards' order, so the |
| 1013 | ;; preferred one never ends up overridden. | 1013 | ;; preferred one never ends up overridden. |
| 1014 | (find-files "obj/include/bits") | 1014 | (find-files "obj/include/bits" "\\.h$") |
| 1015 | (find-files "arch/generic/bits") | 1015 | (find-files "arch/generic/bits" "\\.h$") |
| 1016 | (find-files (string-append "arch/" arch "/bits")))) | 1016 | (find-files |
| 1017 | (string-append "arch/" arch "/bits") "\\.h$"))) | ||
| 1017 | (when (file-exists? (string-append lib "/libc.so")) | 1018 | (when (file-exists? (string-append lib "/libc.so")) |
| 1018 | (symlink "libc.so" | 1019 | (symlink "libc.so" |
| 1019 | (string-append lib "/ld-musl-" arch ".so.1"))))))))))) | 1020 | (string-append lib "/ld-musl-" arch ".so.1"))))))))))) |
