build: meson: Explicitly invoke "meson setup" instead of just "meson".

* guix/build/meson-build-system.scm (configure): Invoke the setup command to
avoid a deprecation warning.
This commit is contained in:
Maxim Cournoyer 2023-04-08 11:22:46 -04:00
parent 9bf0a6e4a8
commit 22491ed9c5
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@
(mkdir build-dir)
(chdir build-dir)
(apply invoke "meson" args)))
(apply invoke "meson" "setup" args)))
(define* (build #:key parallel-build?
#:allow-other-keys)