From 0c790419bbd43009c17aa4a3675e58023082a2c0 Mon Sep 17 00:00:00 2001 From: "Michael J. Sullivan" Date: Wed, 18 Sep 2024 17:26:45 -0700 Subject: [PATCH] Fix install paths in edgedb-load-ext (#7769) We actually want to drop our .so files in `pkglibdir`, which is the same as `libdir` in our dev/build environment but not in our artifacts. --- edb/load_ext/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/edb/load_ext/main.py b/edb/load_ext/main.py index 6c982732326..cc849833f55 100644 --- a/edb/load_ext/main.py +++ b/edb/load_ext/main.py @@ -40,8 +40,8 @@ # Directories that we map to config values in pg_config. CONFIG_PATHS = { 'share': 'sharedir', - 'lib': 'libdir', - 'include': 'includedir', + 'lib': 'pkglibdir', + 'include': 'pkgincludedir-server', }