From: Peter Eisentraut Date: Sun, 15 Jul 2001 11:20:01 +0000 (+0000) Subject: Make sure the build tree is before the source tree in the include path. X-Git-Tag: REL7_2_BETA1~852 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6102553e2da773f583c045611bc20d99edd92b9c;p=postgresql Make sure the build tree is before the source tree in the include path. --- diff --git a/src/Makefile.global.in b/src/Makefile.global.in index a9cbabe0b3..a447d4e87c 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -1,5 +1,5 @@ # -*-makefile-*- -# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.130 2001/07/10 16:33:01 petere Exp $ +# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.131 2001/07/15 11:20:01 petere Exp $ #------------------------------------------------------------------------------ # All PostgreSQL makefiles include this file and use the variables it sets, @@ -146,7 +146,10 @@ DOCBOOKSTYLE = @DOCBOOKSTYLE@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ -override CPPFLAGS := $(sort -I$(top_srcdir)/src/include -I$(top_builddir)/src/include) $(CPPFLAGS) +override CPPFLAGS := -I$(top_srcdir)/src/include $(CPPFLAGS) +ifdef VPATH +override CPPFLAGS := -I$(top_builddir)/src/include $(CPPFLAGS) +endif CC = @CC@ GCC = @GCC@