From 16170a9e48db00eaedc25a6040cc44ec30fffe63 Mon Sep 17 00:00:00 2001 From: Nazir Bilal Yavuz Date: Tue, 16 Jul 2024 23:56:59 +0300 Subject: [PATCH] Solution 2 --- meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 5387bb6d5fd..a3a95372e2c 100644 --- a/meson.build +++ b/meson.build @@ -3227,7 +3227,9 @@ test_env.set('INITDB_TEMPLATE', test_initdb_template) # Test suites that are not safe by default but can be run if selected # by the user via the whitespace-separated list in variable PG_TEST_EXTRA. # Export PG_TEST_EXTRA so it can be checked in individual tap tests. -test_env.set('PG_TEST_EXTRA', get_option('PG_TEST_EXTRA')) +if get_option('PG_TEST_EXTRA') != '' + test_env.set('PG_TEST_EXTRA', get_option('PG_TEST_EXTRA')) +endif # Add the temporary installation to the library search path on platforms where # that works (everything but windows, basically). On windows everything -- 2.45.2