mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
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
1 changed files with 2 additions and 2 deletions
|
@ -43,9 +43,9 @@ (define (write-assignment port key value)
|
|||
(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 a new issue