mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-18 18:44:06 +08:00
Make sure the build tree is before the source tree in the include path.
This commit is contained in:
parent
1032445e5d
commit
6102553e2d
@ -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@
|
||||
|
Loading…
Reference in New Issue
Block a user