1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: file-boot0: Improve style.

* gnu/packages/commencement.scm (file-boot0)[arguments]: Improve
style, remove useless call to file package-arguments.

Change-Id: I8666ea0463383e7e59540cf55b131ce27d5d408e
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Nicolas Graves
2026-02-21 19:23:20 +01:00
committed by Ludovic Courtès
parent ce0de9af97
commit a4c690a0bd

View File

@@ -2158,14 +2158,14 @@ exec " gcc-bin "/" program
(inputs
(cons* gnu-make-boot0 (map cadr (%bootstrap-inputs+toolchain))))
(arguments
`(#:tests? #f ; merge test fails
#:implicit-inputs? #f
#:guile ,%bootstrap-guile
#:configure-flags '("--disable-bzlib")
#:make-flags '("CFLAGS+=-std=c11")
#:strip-binaries? #f
#:validate-runpath? #f
,@(package-arguments file)))))
(list
#:tests? #f ; merge test fails
#:implicit-inputs? #f
#:guile %bootstrap-guile
#:configure-flags #~(list "--disable-bzlib")
#:make-flags #~(list "CFLAGS+=-std=c11")
#:strip-binaries? #f
#:validate-runpath? #f))))
(define gawk-boot0
(package