diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2023-11-08 11:27:28 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2023-11-08 11:28:33 +0100 |
commit | b7caeaff31ea1d0d0899241f30452353b78e840a (patch) | |
tree | 82ab4d69daa56bf34b40f638d674619a9fedc05b /src | |
parent | 2a08dda29128472879cf4f70bc06806595505def (diff) | |
download | postgresql-b7caeaff31ea1d0d0899241f30452353b78e840a.tar.gz postgresql-b7caeaff31ea1d0d0899241f30452353b78e840a.zip |
Don't install ldap_password_func in meson
It should be handled as a test module per commit b6a0d469ca.
Diffstat (limited to 'src')
-rw-r--r-- | src/test/modules/ldap_password_func/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/modules/ldap_password_func/meson.build b/src/test/modules/ldap_password_func/meson.build index 63dc852bf3c..209b6683373 100644 --- a/src/test/modules/ldap_password_func/meson.build +++ b/src/test/modules/ldap_password_func/meson.build @@ -14,7 +14,7 @@ endif ldap_password_func = shared_module('ldap_password_func', ldap_password_func_sources, - kwargs: pg_mod_args + { + kwargs: pg_test_mod_args + { 'dependencies': [ldap, pg_mod_args['dependencies']], }, ) |