]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#3731] Fix postgresql fallback
authorAndrei Pavel <andrei@isc.org>
Tue, 18 Mar 2025 09:02:44 +0000 (11:02 +0200)
committerAndrei Pavel <andrei@isc.org>
Tue, 18 Mar 2025 09:02:44 +0000 (11:02 +0200)
subprojects/postgresql/meson.build

index 9ca8b88aaea395554311472299dd67fb993e0ad0..7f83f0a54be8fc56060a2340c5a88efadfd3f5c6 100644 (file)
@@ -3,7 +3,7 @@ postgresql = disabler()
 pg_config = find_program('pg_config', required: false)
 if pg_config.found()
     cppflags = run_command([pg_config, '--cppflags'], check: false)
-    includedir = run(command[pg_config, '--includedir'], check: false)
+    includedir = run_command([pg_config, '--includedir'], check: false)
     libs = run_command([pg_config, '--libs'], check: false)
     version = run_command([pg_config, '--version'], check: false)
     if cppflags.returncode() == 0 and includedir.returncode() == 0 and libs.returncode() == 0 and version.returncode() == 0