diff options
| author | Tom Lane | 2005-09-27 17:13:14 +0000 |
|---|---|---|
| committer | Tom Lane | 2005-09-27 17:13:14 +0000 |
| commit | 0b36cb83dc53b2455ae4a5d6d10587ad0a3c53fa (patch) | |
| tree | 45ef9026cb2d77b507870a27d85f6aadf2c173fb /contrib/pg_buffercache | |
| parent | 8ddd22f2456af0155f9c183894f481203e86b76e (diff) | |
PGXS should be set with := not =, as specified in the documentation,
to avoid useless multiple executions of pg_config.
Diffstat (limited to 'contrib/pg_buffercache')
| -rw-r--r-- | contrib/pg_buffercache/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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 |
