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>
This commit is contained in:
parent
4a99dd7322
commit
3ba8f3f0d8
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user