mirror of
https://github.com/conan-io/conan-center-index.git
synced 2025-04-30 15:56:41 +00:00
libpq: reorder build targets so that pg_config is built first (#26352)
This commit is contained in:
@ -188,13 +188,14 @@ class LibpqConan(ConanFile):
|
||||
autotools.make()
|
||||
with chdir(self, os.path.join(self.build_folder, "src", "include")):
|
||||
autotools.make()
|
||||
with chdir(self, os.path.join(self.build_folder, "src", "bin", "pg_config")):
|
||||
autotools.make()
|
||||
with chdir(self, os.path.join(self.build_folder, "src", "interfaces", "libpq")):
|
||||
autotools.make()
|
||||
if Version(self.version) >= 12:
|
||||
with chdir(self, os.path.join(self.build_folder, "src", "port")):
|
||||
autotools.make()
|
||||
with chdir(self, os.path.join(self.build_folder, "src", "bin", "pg_config")):
|
||||
autotools.make()
|
||||
|
||||
|
||||
def _remove_unused_libraries_from_package(self):
|
||||
bin_folder = os.path.join(self.package_folder, "bin")
|
||||
|
Reference in New Issue
Block a user