diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2008-05-08 17:11:41 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2008-05-08 17:11:41 +0000 |
commit | 773f5cc8cb78ca94588848d86c137cd5d46fe794 (patch) | |
tree | a206171d3643585037088387461bde76bcadd092 | |
parent | 1fb9814d708082edad108dbce779b689a554d43f (diff) |
Fix contrib/xml2 makefile to not override CFLAGS.
-rw-r--r-- | contrib/xml2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/xml2/Makefile b/contrib/xml2/Makefile index dcaf68698dd..a6448e65344 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) |