1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02: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:
Jean-Pierre De Jesus DIAZ
2023-09-29 11:16:19 +02:00
committed by Mathieu Othacehe
parent 4a99dd7322
commit 3ba8f3f0d8

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)