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