From: Robert Haas Date: Fri, 11 Sep 2015 20:45:41 +0000 (-0400) Subject: Install lwlocknames.h even in vpath builds. X-Git-Tag: REL9_6_BETA1~1374 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a7212a9997e592fe72e2095a5f4f37071787d849;p=postgresql Install lwlocknames.h even in vpath builds. Per buildfarm member crake. --- diff --git a/src/include/Makefile b/src/include/Makefile index e486fd917d..314d3b03f5 100644 --- a/src/include/Makefile +++ b/src/include/Makefile @@ -52,7 +52,7 @@ install: all installdirs chmod $(INSTALL_DATA_MODE) '$(DESTDIR)$(includedir_server)'/$$dir/*.h || exit; \ done ifeq ($(vpath_build),yes) - for file in dynloader.h catalog/schemapg.h parser/gram.h utils/probes.h; do \ + for file in dynloader.h catalog/schemapg.h parser/gram.h storage/lwlocknames.h utils/probes.h; do \ cp $$file '$(DESTDIR)$(includedir_server)'/$$file || exit; \ chmod $(INSTALL_DATA_MODE) '$(DESTDIR)$(includedir_server)'/$$file || exit; \ done