diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-03-31 14:03:01 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-03-31 14:03:01 +0200 |
commit | 8886a96f7469beaf5a1710b84cbfec20b1f6c7a0 (patch) | |
tree | 6738ebe4353de56aa3116ab0cf2b42f2502cf141 | |
parent | bfd17ecddd12d8098e2cbd4b38f2ae7c2eeed1ce (diff) |
build-system/scons: Fix typo.
Typo introduced in 7d873f194ca69d6096d28d7a224ab78e83e34fe1.
* guix/build-system/scons.scm (scons-build): Use #$name rather than ,name.
-rw-r--r-- | guix/build-system/scons.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/build-system/scons.scm b/guix/build-system/scons.scm index 07fd008d0d..7cc0c390b0 100644 --- a/guix/build-system/scons.scm +++ b/guix/build-system/scons.scm @@ -97,7 +97,7 @@ provides a 'SConstruct' file as its build system." #~(begin (use-modules #$@(sexp->gexp modules)) - (scons-build #:name ,name + (scons-build #:name #$name #:source #+source #:scons-flags #$(sexp->gexp scons-flags) #:system #$system |