From fe9d009e3e945945e1e3bb0f65514217fc8566e5 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 31 Aug 2022 07:42:01 +0200 Subject: [PATCH] plpython: Don't create pgxsdir subdirectory in installdir target As of db23464715f4792298c639153dda7bfd9ad9d602, we don't install anything there anymore from plpython, so we don't need to create the installation directory anymore. --- src/pl/plpython/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pl/plpython/Makefile b/src/pl/plpython/Makefile index 0d6f74de71f..6b1865c2402 100644 --- a/src/pl/plpython/Makefile +++ b/src/pl/plpython/Makefile @@ -110,7 +110,7 @@ $(OBJS): | submake-generated-headers install: all install-lib install-data installdirs: installdirs-lib - $(MKDIR_P) '$(DESTDIR)$(datadir)/extension' '$(DESTDIR)$(includedir_server)' '$(DESTDIR)$(pgxsdir)/src/pl/plpython' + $(MKDIR_P) '$(DESTDIR)$(datadir)/extension' '$(DESTDIR)$(includedir_server)' uninstall: uninstall-lib uninstall-data