diff options
author | Jean-Pierre De Jesus DIAZ <jean@foundationdevices.com> | 2023-09-29 11:16:19 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2023-10-04 14:58:42 +0200 |
commit | 3ba8f3f0d812cabcc11d3cbfb78abb69db7c577f (patch) | |
tree | 2676e0accf20445dfa01ae95c348b50b11c04146 /guix/build | |
parent | 4a99dd73227ad5644a0c413c6956d1a24776c474 (diff) |
guix: meson-configuration: Fix boolean assigment.
* guix/build/meson-configuration.scm (write-assigment): Print true for
#t and false for #f. Previously it was inverting the values.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Diffstat (limited to 'guix/build')
-rw-r--r-- | guix/build/meson-configuration.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/build/meson-configuration.scm b/guix/build/meson-configuration.scm index 1aac5f8f0a..5e194d4c2b 100644 --- a/guix/build/meson-configuration.scm +++ b/guix/build/meson-configuration.scm @@ -43,9 +43,9 @@ a boolean or an integer. Lists are currently not supported" (format port "~a = '~a'~%" key value)) ((? integer?) (format port "~a = ~a~%" key value)) - (#f - (format port "~a = true~%" key)) (#t + (format port "~a = true~%" key)) + (#f (format port "~a = false~%" key)))) (define* (write-assignments port alist) |