summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2008-05-08 17:11:52 +0000
committerTom Lane2008-05-08 17:11:52 +0000
commitf68173692ff0398c2d08651d3d6ab854f70bf9cb (patch)
tree439b37bd4ef2cfa060582a513078a8fc45102b40
parent7f3d1583f8bc9f3bf6866e38f28c4671a0cb56f6 (diff)
Fix contrib/xml2 makefile to not override CFLAGS.
-rw-r--r--contrib/xml2/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/xml2/Makefile b/contrib/xml2/Makefile
index a7398c1a21a..15187eacd15 100644
--- a/contrib/xml2/Makefile
+++ b/contrib/xml2/Makefile
@@ -11,7 +11,7 @@ SHLIB_LINK = -lxslt -lxml2
DATA_built = pgxml.sql
DOCS = README.xml2
-override CFLAGS += $(shell xml2-config --cflags)
+PG_CPPFLAGS := $(shell xml2-config --cflags)
ifdef USE_PGXS
PGXS = $(shell pg_config --pgxs)