Skip to content
Snippets Groups Projects
Commit 6102553e authored by Peter Eisentraut's avatar Peter Eisentraut
Browse files

Make sure the build tree is before the source tree in the include path.

parent 1032445e
No related branches found
No related tags found
No related merge requests found
# -*-makefile-*- # -*-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, # All PostgreSQL makefiles include this file and use the variables it sets,
...@@ -146,7 +146,10 @@ DOCBOOKSTYLE = @DOCBOOKSTYLE@ ...@@ -146,7 +146,10 @@ DOCBOOKSTYLE = @DOCBOOKSTYLE@
CPP = @CPP@ CPP = @CPP@
CPPFLAGS = @CPPFLAGS@ 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@ CC = @CC@
GCC = @GCC@ GCC = @GCC@
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment