guix_mirror_bot pushed a commit to branch wip-riscv-bootstrap
in repository guix.

commit d84282352caa4763bf9ede45f596fe3aaa972898
Author: Efraim Flashner <efr...@flashner.co.il>
AuthorDate: Sun Nov 24 10:58:21 2024 +0200

    fixup gnu: musl-boot0: Improve the install phase.
    
    Change-Id: Id7ac782bf5fe9d6cce308ebd8271b0b4b43b704a
---
 gnu/packages/commencement.scm | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index cd4f9b49f4..07f3e7b35b 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -982,14 +982,13 @@ MesCC-Tools), and finally M2-Planet.")
                       (lib (string-append out "/lib"))
                       (incl (string-append out "/include"))
                       ;; Taken from the ARCH variable in configure.
-                      (arch #$(cond
-                                ((target-x86-32?) "i386")
-                                ((target-x32?) "x32")
-                                ((target-arm32?) "arm")
-                                ((target-ppc64le?) "powerpc64")
-                                (#t (string-take
-                                      (%current-system)
-                                      (string-index (%current-system) #\-))))))
+                      (arch #$(cond ((target-x86-32?) "i386")
+                                    ((target-x32?) "x32")
+                                    ((target-arm32?) "arm")
+                                    ((target-ppc64le?) "powerpc64")
+                                    (#t (string-take
+                                          (%current-system)
+                                          (string-index (%current-system) 
#\-))))))
                  (for-each (lambda (file)
                              (when (file-exists? file)
                                (install-file file bin)))

Reply via email to