diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-02-26 12:38:21 +0530 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-02-26 12:38:21 +0530 |
commit | 9117985b6ba9beda4f280f596035649fc23b6233 (patch) | |
tree | dbf4d71787fac62663d8e49c38b1f248d05b645a | |
parent | e64009303d4e2434abafbdafe4d571cc4f279d39 (diff) | |
download | postgresql-9117985b6ba9beda4f280f596035649fc23b6233.tar.gz postgresql-9117985b6ba9beda4f280f596035649fc23b6233.zip |
Respect TEMP_CONFIG when running contrib regression tests.
Thomas Munro
-rw-r--r-- | contrib/contrib-global.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/contrib-global.mk b/contrib/contrib-global.mk index 6ac8e9b13d0..ba49610b115 100644 --- a/contrib/contrib-global.mk +++ b/contrib/contrib-global.mk @@ -1,4 +1,9 @@ # contrib/contrib-global.mk +# file with extra config for temp build +ifdef TEMP_CONFIG +REGRESS_OPTS += --temp-config=$(TEMP_CONFIG) +endif + NO_PGXS = 1 include $(top_srcdir)/src/makefiles/pgxs.mk |