8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b6a1e8 commit 37e66e7Copy full SHA for 37e66e7
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'
0 commit comments