Fix py psycopg c pg config#237
Merged
Merged
Conversation
libpq's portfile uses vcpkg_copy_tools(TOOL_NAMES pg_config ...) without a DESTINATION, so the binary lands at tools/libpq/pg_config — not tools/libpq/bin/pg_config. The else() branch of py-psycopg-c had the wrong path, causing the build to fall back to PATH lookup of pg_config (not present) and fail with '[Errno 2] No such file or directory: pg_config'. Match the Windows branch which already uses tools/libpq with no /bin.
m-kuhn
reviewed
May 21, 2026
3nids
added a commit
that referenced
this pull request
May 26, 2026
* [py-psycopg-c] Re-fix pg_config path on non-Windows PR #237 ended up merging the revert (commit 4c56d3c "Update PG_CONFIG path for non-Windows systems") which restored the wrong tools/libpq/bin/pg_config path. libpq's portfile calls vcpkg_copy_tools(TOOL_NAMES pg_config ... AUTO_CLEAN) with no DESTINATION, and vcpkg_copy_tools.cmake (line 13) defaults DESTINATION to ${CURRENT_PACKAGES_DIR}/tools/${PORT}, so pg_config lands at tools/libpq/pg_config (no /bin). Restore the correct path and bump port-version to 4. * configure via env --------- Co-authored-by: Matthias Kuhn <matthias@opengis.ch>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.