diff options
author | Tom Lane | 2008-05-08 17:12:08 +0000 |
---|---|---|
committer | Tom Lane | 2008-05-08 17:12:08 +0000 |
commit | d42f212573edc53b03b46d809bd1851d8ecf88f6 (patch) | |
tree | f0b962cc5ff71f4c7148e66976c8e1e686d89682 | |
parent | f68173692ff0398c2d08651d3d6ab854f70bf9cb (diff) |
Fix contrib/xml makefile to not override CFLAGS.
-rw-r--r-- | contrib/xml/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/xml/Makefile b/contrib/xml/Makefile index 879cd4d9ff3..b1f97242ad4 100644 --- a/contrib/xml/Makefile +++ b/contrib/xml/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/xml/Makefile,v 1.10 2004/11/04 06:09:23 neilc Exp $ +# $PostgreSQL: pgsql/contrib/xml/Makefile,v 1.10.4.1 2008/05/08 17:12:08 tgl Exp $ MODULE_big = pgxml_dom OBJS = pgxml_dom.o @@ -6,7 +6,7 @@ SHLIB_LINK = -lxml2 DATA_built = pgxml_dom.sql DOCS = README.xml -override CFLAGS += $(shell xml2-config --cflags) +PG_CPPFLAGS := $(shell xml2-config --cflags) ifdef USE_PGXS PGXS = $(shell pg_config --pgxs) |