We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentd5873b6 commit409b8c7Copy full SHA for 409b8c7
src/include/Makefile
@@ -49,6 +49,12 @@ install: all installdirs
49
cp $(srcdir)/$$dir/*.h '$(DESTDIR)$(includedir_server)'/$$dir/ || exit; \
50
chmod $(INSTALL_DATA_MODE) '$(DESTDIR)$(includedir_server)'/$$dir/*.h || exit; \
51
done
52
+ifeq ($(vpath_build),yes)
53
+for file in dynloader.h catalog/schemapg.h parser/gram.h utils/probes.h; do \
54
+ cp $$file '$(DESTDIR)$(includedir_server)'/$$file || exit; \
55
+ chmod $(INSTALL_DATA_MODE) '$(DESTDIR)$(includedir_server)'/$$file || exit; \
56
+done
57
+endif
58
59
installdirs:
60
$(MKDIR_P)'$(DESTDIR)$(includedir)/libpq''$(DESTDIR)$(includedir_internal)/libpq'