diff mbox series

[bug#67969,1/4] guix: scons-build: Cleanup keyword arguments.

Message ID 3261543b70ba7bfd5311162c30f93685667bd2a3.1703248242.git.jean@foundationdevices.com
State New
Headers show
Series guix: scons: Support cross-compilation. | expand

Commit Message

Jean-Pierre De Jesus DIAZ Dec. 22, 2023, 12:37 p.m. UTC
* guix/build-system/scons.scm (scons-build): Remove default value of #f
  from keyword arguments since they are #f if they are not present.

Change-Id: I18cca8abb350c99c20e87d623cc9975570731dfc
---
 guix/build-system/scons.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/guix/build-system/scons.scm b/guix/build-system/scons.scm
index 046ddef740..6cbffcab63 100644
--- a/guix/build-system/scons.scm
+++ b/guix/build-system/scons.scm
@@ -75,7 +75,7 @@  (define* (lower name
 
 (define* (scons-build name inputs
                       #:key
-                      (source #f)
+                      guile source
                       (tests? #t)
                       (scons-flags ''())
                       (build-targets #~'())
@@ -85,7 +85,6 @@  (define* (scons-build name inputs
                       (outputs '("out"))
                       (search-paths '())
                       (system (%current-system))
-                      (guile #f)
                       (imported-modules %scons-build-system-modules)
                       (modules '((guix build scons-build-system)
                                  (guix build utils))))