1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
--- ./Makefile.orig 2020-06-08 18:33:20.060591751 +0200
+++ ./Makefile 2020-06-08 18:34:08.384760647 +0200
@@ -19,6 +19,12 @@
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
+# avoid linking against all libs that the server links against (xml, selinux, ...)
+LIBS = $(libpq_pgport) $(libpq_pgcommon)
+
+# install into /usr/bin instead of some version-dependent bin directory
+bindir = /usr/bin
+
# pgxs.mk assumes too much about what "make check" means, so call it "test"
.PHONY: test
|