diff -ur postgresql-14.0.orig/src/bin/pg_config/pg_config.c postgresql-14.0/src/bin/pg_config/pg_config.c --- postgresql-14.0.orig/src/bin/pg_config/pg_config.c 2021-11-01 14:48:22.654149731 +0100 +++ postgresql-14.0/src/bin/pg_config/pg_config.c 2021-11-01 14:49:14.747282545 +0100 @@ -27,6 +27,8 @@ #include "common/config_info.h" #include "port.h" +#include "../port/pg_config_paths.h" + static const char *progname; /* @@ -149,11 +151,7 @@ } } - if (find_my_exec(argv[0], my_exec_path) < 0) - { - fprintf(stderr, _("%s: could not find own program executable\n"), progname); - exit(1); - } + snprintf(my_exec_path, sizeof(my_exec_path), "%s/%s", PGBINDIR, progname); configdata = get_configdata(my_exec_path, &configdata_len); /* no arguments -> print everything */ diff -ur postgresql-14.0.orig/src/Makefile.global.in postgresql-14.0/src/Makefile.global.in --- postgresql-14.0.orig/src/Makefile.global.in 2021-11-01 14:48:22.456149226 +0100 +++ postgresql-14.0/src/Makefile.global.in 2021-11-01 14:49:14.747282545 +0100 @@ -119,7 +119,7 @@ pkglibdir = $(libdir) ifeq "$(findstring pgsql, $(pkglibdir))" "" ifeq "$(findstring postgres, $(pkglibdir))" "" -override pkglibdir := $(pkglibdir)/postgresql +override pkglibdir := $(pkglibdir)/postgresql/@PG_MAJORVERSION@/lib endif endif @@ -167,7 +167,7 @@ # These derived path variables aren't separately configurable. -includedir_server = $(pkgincludedir)/server +includedir_server = $(pkgincludedir)/@PG_MAJORVERSION@/server includedir_internal = $(pkgincludedir)/internal pgxsdir = $(pkglibdir)/pgxs bitcodedir = $(pkglibdir)/bitcode