From d84282352caa4763bf9ede45f596fe3aaa972898 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sun, 24 Nov 2024 10:58:21 +0200 Subject: [PATCH] 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 cd4f9b49f4e..07f3e7b35bf 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)))