From 0b36cb83dc53b2455ae4a5d6d10587ad0a3c53fa Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 27 Sep 2005 17:13:14 +0000 Subject: PGXS should be set with := not =, as specified in the documentation, to avoid useless multiple executions of pg_config. --- contrib/pg_buffercache/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'contrib/pg_buffercache') diff --git a/contrib/pg_buffercache/Makefile b/contrib/pg_buffercache/Makefile index ff748b8eac..5bec1a20b6 100644 --- a/contrib/pg_buffercache/Makefile +++ b/contrib/pg_buffercache/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/pg_buffercache/Makefile,v 1.1 2005/03/12 15:36:24 neilc Exp $ +# $PostgreSQL: pgsql/contrib/pg_buffercache/Makefile,v 1.2 2005/09/27 17:13:07 tgl Exp $ MODULE_big = pg_buffercache OBJS = pg_buffercache_pages.o @@ -7,7 +7,7 @@ DATA_built = pg_buffercache.sql DOCS = README.pg_buffercache ifdef USE_PGXS -PGXS = $(shell pg_config --pgxs) +PGXS := $(shell pg_config --pgxs) include $(PGXS) else subdir = contrib/pg_buffercache -- cgit v1.2.1