diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2008-05-08 17:11:33 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2008-05-08 17:11:33 +0000 |
commit | eb23d8023b5d4fda60ece92d7e281c1b6c8009cb (patch) | |
tree | 75d8b4217ec48eeb8e94836bbebbe043b38eac9d | |
parent | 4b87bfaabac7d16f304e7e59bfc52ccef17e9beb (diff) | |
download | postgresql-eb23d8023b5d4fda60ece92d7e281c1b6c8009cb.tar.gz postgresql-eb23d8023b5d4fda60ece92d7e281c1b6c8009cb.zip |
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 0bd5b032976..e9ed20f128c 100644 --- a/contrib/xml2/Makefile +++ b/contrib/xml2/Makefile @@ -12,7 +12,7 @@ DATA_built = pgxml.sql DATA = uninstall_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) |