guix_mirror_bot pushed a commit to branch core-packages-team
in repository guix.

commit 2ed0506d85feb155b2f85ae328e821ca533b5d98
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Feb 17 13:58:19 2026 +0100

    gnu: binutils-mesboot: Improve style.
    
    * gnu/packages/commencement.scm (binutils-mesboot)[arguments]
    <#:configure-flags>: Improve style, use search-input-file.
    
    Change-Id: I2f711b5083ddfa61591a8ad761ef3b4409475cb6
    Signed-off-by: Ludovic Courtès <[email protected]>
---
 gnu/packages/commencement.scm | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index daf518a3c5..af43ab04a0 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -925,19 +925,19 @@ MesCC-Tools), and finally M2-Planet.")
            #~(let ((cppflags (string-append
                               " -D __GLIBC_MINOR__=6"
                               " -D MES_BOOTSTRAP=1"))
-                   (bash (assoc-ref %build-inputs "bash")))
-               `(,(string-append "CONFIG_SHELL=" bash "/bin/sh")
-                 ,(string-append "CPPFLAGS=" cppflags)
-                 "AR=tcc -ar"
-                 "CXX=false"
-                 "RANLIB=true"
-                 ,(string-append "CC=tcc" cppflags)
-                 "--disable-nls"
-                 "--disable-shared"
-                 "--disable-werror"
-                 "--build=i686-unknown-linux-gnu"
-                 "--host=i686-unknown-linux-gnu"
-                 "--with-sysroot=/"))))))
+                   (bash (search-input-file %build-inputs "/bin/sh")))
+               (list (string-append "CONFIG_SHELL=" bash)
+                     (string-append "CPPFLAGS=" cppflags)
+                     "AR=tcc -ar"
+                     "CXX=false"
+                     "RANLIB=true"
+                     (string-append "CC=tcc" cppflags)
+                     "--disable-nls"
+                     "--disable-shared"
+                     "--disable-werror"
+                     "--build=i686-unknown-linux-gnu"
+                     "--host=i686-unknown-linux-gnu"
+                     "--with-sysroot=/"))))))
 
 (define gcc-core-mesboot0
   ;; Gcc-2.95.3 is the most recent GCC that is supported by what the Mes C

Reply via email to