postgresql: add command property (#31297)

This commit is contained in:
Adam J. Stewart 2022-06-27 23:04:26 -07:00 committed by GitHub
parent f6d4000e58
commit 4f203eb50f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,6 +58,10 @@ class Postgresql(AutotoolsPackage):
depends_on('python', when='+python') depends_on('python', when='+python')
depends_on('libxml2', when='+xml') depends_on('libxml2', when='+xml')
@property
def command(self):
return Exectuable(self.prefix.bin.pg_config)
def configure_args(self): def configure_args(self):
config_args = ["--with-openssl"] config_args = ["--with-openssl"]