We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3430dcd commit a595830Copy full SHA for a595830
setup.py
@@ -372,7 +372,9 @@ def finalize_options(self):
372
self.libraries.append("pq")
373
374
try:
375
- self.library_dirs.append(pg_config_helper.query("libdir"))
+ pg_config_libdir = pg_config_helper.query("libdir")
376
+ self.library_dirs.append(pg_config_libdir)
377
+ self.rpath.append(pg_config_libdir)
378
self.include_dirs.append(pg_config_helper.query("includedir"))
379
self.include_dirs.append(pg_config_helper.query("includedir-server"))
380
0 commit comments