diff options
author | Tom Lane | 2010-01-05 03:56:52 +0000 |
---|---|---|
committer | Tom Lane | 2010-01-05 03:56:52 +0000 |
commit | daf5b0f2977d6395daf404cfa1b60b361af86377 (patch) | |
tree | 5124fce3c516862df5bd8ff400a3c045f1e74a26 /src/backend/bootstrap | |
parent | 9d781b55f4ba2481a6217316361ddfd67cc06318 (diff) |
Fix a few places where we needed -I. in CPPFLAGS to work properly in
VPATH builds. We had this already in several places, but not all.
Diffstat (limited to 'src/backend/bootstrap')
-rw-r--r-- | src/backend/bootstrap/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/bootstrap/Makefile b/src/backend/bootstrap/Makefile index 53cc71285e5..f1dd7e12c3a 100644 --- a/src/backend/bootstrap/Makefile +++ b/src/backend/bootstrap/Makefile @@ -2,7 +2,7 @@ # # Makefile for the bootstrap module # -# $PostgreSQL: pgsql/src/backend/bootstrap/Makefile,v 1.38 2009/08/28 20:26:18 petere Exp $ +# $PostgreSQL: pgsql/src/backend/bootstrap/Makefile,v 1.39 2010/01/05 03:56:52 tgl Exp $ # #------------------------------------------------------------------------- @@ -10,7 +10,7 @@ subdir = src/backend/bootstrap top_builddir = ../../.. include $(top_builddir)/src/Makefile.global -override CPPFLAGS := -I$(srcdir) $(CPPFLAGS) +override CPPFLAGS := -I. -I$(srcdir) $(CPPFLAGS) OBJS= bootparse.o bootstrap.o |