From: Tom Lane Date: Thu, 8 May 2008 17:11:52 +0000 (+0000) Subject: Fix contrib/xml2 makefile to not override CFLAGS. X-Git-Tag: REL8_0_16~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f68173692ff0398c2d08651d3d6ab854f70bf9cb;p=thirdparty%2Fpostgresql.git Fix contrib/xml2 makefile to not override CFLAGS. --- 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)