summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane2023-03-23 17:01:31 +0000
committerTom Lane2023-03-23 17:01:44 +0000
commitdccef0f2f8f352de3f601f48b94093995ad839ef (patch)
tree8d6442dfc92cbb2e4984b3c7cc5802272372d5f1 /src
parentd0160ca11e31878f94dd491fcde3a22843e32665 (diff)
Add missing "-I." flag when building pg_bsd_indent.
This is evidently not required by most compilers, but buildfarm member fairywren is unhappy without it. It looks like the meson infrastructure has this right already.
Diffstat (limited to 'src')
-rw-r--r--src/tools/pg_bsd_indent/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/pg_bsd_indent/Makefile b/src/tools/pg_bsd_indent/Makefile
index b138bb8b12e..d176ceb326e 100644
--- a/src/tools/pg_bsd_indent/Makefile
+++ b/src/tools/pg_bsd_indent/Makefile
@@ -13,6 +13,8 @@ subdir = src/tools/pg_bsd_indent
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global
+override CPPFLAGS := -I$(srcdir) $(CPPFLAGS)
+
OBJS = \
$(WIN32RES) \
args.o \