aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2023-10-19 09:42:46 +0900
committerMichael Paquier <michael@paquier.xyz>2023-10-19 09:42:46 +0900
commit7fb355db142958f463f7a0415248184f7ca4503f (patch)
tree5c958ac0afb3b2d86baa5e85b8003e76e697a1c4 /src
parent76200e5ee469e4a9db5f9514b9d0c6a31b496bff (diff)
downloadpostgresql-7fb355db142958f463f7a0415248184f7ca4503f.tar.gz
postgresql-7fb355db142958f463f7a0415248184f7ca4503f.zip
Install wait_event_types.h in VPATH builds
An extra rule is needed in src/include/Makefile for VPATH builds to install any generated server-side include files, and wait_event_types.h was forgotten from the set. Issue introduced by fa88928470b5. Reported-by: Christoph Berg Discussion: https://postgr.es/m/ZTAA11u7CtX6NqlK@msg.df7cb.de
Diffstat (limited to 'src')
-rw-r--r--src/include/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/Makefile b/src/include/Makefile
index 2d5242561cd..a7ca2778031 100644
--- a/src/include/Makefile
+++ b/src/include/Makefile
@@ -54,7 +54,7 @@ install: all installdirs
$(INSTALL_DATA) $(srcdir)/$$dir/*.h '$(DESTDIR)$(includedir_server)'/$$dir || exit; \
done
ifeq ($(vpath_build),yes)
- for file in catalog/schemapg.h catalog/system_fk_info.h catalog/pg_*_d.h storage/lwlocknames.h utils/probes.h; do \
+ for file in catalog/schemapg.h catalog/system_fk_info.h catalog/pg_*_d.h storage/lwlocknames.h utils/probes.h utils/wait_event_types.h; do \
$(INSTALL_DATA) $$file '$(DESTDIR)$(includedir_server)'/$$file || exit; \
done
endif