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:
Jean-Pierre De Jesus DIAZ 2023-09-29 11:16:19 +02:00 committed by Mathieu Othacehe
parent 4a99dd7322
commit 3ba8f3f0d8
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 2 additions and 2 deletions

View File

@ -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)