diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-01-09 00:06:42 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-01-09 00:06:42 +0000 |
commit | d079c419d21cc0274eccb09e751e1a7e55520032 (patch) | |
tree | 37ec00c03b944e9a21855ddc7a009f829d01592d /src/backend | |
parent | c58d5d5fcb3ee0358bf618a8fb4765e04e9ffa3b (diff) | |
download | postgresql-d079c419d21cc0274eccb09e751e1a7e55520032.tar.gz postgresql-d079c419d21cc0274eccb09e751e1a7e55520032.zip |
Fix include paths for case of VPATH build.
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/bootstrap/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/bootstrap/Makefile b/src/backend/bootstrap/Makefile index 0e21dc57a53..b45d42b7459 100644 --- a/src/backend/bootstrap/Makefile +++ b/src/backend/bootstrap/Makefile @@ -2,7 +2,7 @@ # # Makefile for the bootstrap module # -# $Header: /cvsroot/pgsql/src/backend/bootstrap/Makefile,v 1.29 2001/11/16 16:32:33 petere Exp $ +# $Header: /cvsroot/pgsql/src/backend/bootstrap/Makefile,v 1.30 2002/01/09 00:06:42 tgl Exp $ # #------------------------------------------------------------------------- @@ -10,6 +10,8 @@ subdir = src/backend/bootstrap top_builddir = ../../.. include $(top_builddir)/src/Makefile.global +override CPPFLAGS := -I$(srcdir) $(CPPFLAGS) + # qnx4's wlink currently crashes with bootstrap.o ifneq ($(PORTNAME), qnx4) OBJS= bootparse.o bootscanner.o bootstrap.o |