civodul pushed a commit to branch master
in repository guix.
commit 9db34c41acae675041e2d0a72e72688b7b58d114
Author: Ludovic Courtès <[email protected]>
AuthorDate: Fri Jul 26 19:20:53 2024 +0200
build-system/meson: #:test-options can be a gexp.
* guix/build-system/meson.scm (meson-build, meson-cross-build): Accept
gexps for #:test-options.
Change-Id: I9cfec616f067a5c9928f65892e370f90f23f4352
---
guix/build-system/meson.scm | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/guix/build-system/meson.scm b/guix/build-system/meson.scm
index 04d2241c79..13baf329df 100644
--- a/guix/build-system/meson.scm
+++ b/guix/build-system/meson.scm
@@ -1,7 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2017 Peter Mikkelsen <[email protected]>
;;; Copyright © 2018, 2019 Marius Bakke <[email protected]>
-;;; Copyright © 2021, 2022 Ludovic Courtès <[email protected]>
+;;; Copyright © 2021-2022, 2024 Ludovic Courtès <[email protected]>
;;; Copyright © 2021 Maxime Devos <[email protected]>
;;; Copyright © 2022 Efraim Flashner <[email protected]>
;;;
@@ -239,7 +239,9 @@ has a 'meson.build' file."
configure-flags)
#:build-type #$build-type
#:tests? #$tests?
- #:test-options #$(sexp->gexp test-options)
+ #:test-options #$(if (pair? test-options)
+ (sexp->gexp test-options)
+ test-options)
#:parallel-build? #$parallel-build?
#:parallel-tests? #$parallel-tests?
#:validate-runpath? #$validate-runpath?
@@ -352,7 +354,9 @@ SOURCE has a 'meson.build' file."
configure-flags))
#:build-type #$build-type
#:tests? #$tests?
- #:test-options #$(sexp->gexp test-options)
+ #:test-options #$(if (pair? test-options)
+ (sexp->gexp test-options)
+ test-options)
#:parallel-build? #$parallel-build?
#:parallel-tests? #$parallel-tests?
#:validate-runpath? #$validate-runpath?