aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2008-05-08 17:11:33 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2008-05-08 17:11:33 +0000
commiteb23d8023b5d4fda60ece92d7e281c1b6c8009cb (patch)
tree75d8b4217ec48eeb8e94836bbebbe043b38eac9d
parent4b87bfaabac7d16f304e7e59bfc52ccef17e9beb (diff)
downloadpostgresql-eb23d8023b5d4fda60ece92d7e281c1b6c8009cb.tar.gz
postgresql-eb23d8023b5d4fda60ece92d7e281c1b6c8009cb.zip
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 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)