|
1 | 1 | # -*-makefile-*-
|
2 |
| -# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.130 2001/07/10 16:33:01 petere Exp $ |
| 2 | +# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.131 2001/07/15 11:20:01 petere Exp $ |
3 | 3 |
|
4 | 4 | #------------------------------------------------------------------------------
|
5 | 5 | # All PostgreSQL makefiles include this file and use the variables it sets,
|
@@ -146,7 +146,10 @@ DOCBOOKSTYLE= @DOCBOOKSTYLE@
|
146 | 146 |
|
147 | 147 | CPP = @CPP@
|
148 | 148 | CPPFLAGS = @CPPFLAGS@
|
149 |
| -overrideCPPFLAGS :=$(sort -I$(top_srcdir)/src/include -I$(top_builddir)/src/include)$(CPPFLAGS) |
| 149 | +overrideCPPFLAGS := -I$(top_srcdir)/src/include$(CPPFLAGS) |
| 150 | +ifdefVPATH |
| 151 | +overrideCPPFLAGS := -I$(top_builddir)/src/include$(CPPFLAGS) |
| 152 | +endif |
150 | 153 |
|
151 | 154 | CC = @CC@
|
152 | 155 | GCC = @GCC@
|
|