aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2014-09-17 00:54:12 -0400
committerPeter Eisentraut <peter_e@gmx.net>2014-09-17 00:54:12 -0400
commitf7d6759ec2df9ad10b65aea359a27789e16a353b (patch)
tree99d6f2694eb7cf5d260ded61cc2731c3f7a4794f
parent77e65bf369edd0282531794dd907a0943651eff8 (diff)
downloadpostgresql-f7d6759ec2df9ad10b65aea359a27789e16a353b.tar.gz
postgresql-f7d6759ec2df9ad10b65aea359a27789e16a353b.zip
Fix TAP checks when current directory name contains spaces
Add some quotes in the makefile snippet that creates the temporary installation, so that it can handle spaces in the directory name and possibly some other oddities.
-rw-r--r--src/Makefile.global.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in
index 39a6175adb1..2af9413f216 100644
--- a/src/Makefile.global.in
+++ b/src/Makefile.global.in
@@ -316,7 +316,7 @@ endef
define prove_check
$(MKDIR_P) tmp_check/log
-$(MAKE) -C $(top_builddir) DESTDIR=$(CURDIR)/tmp_check/install install >$(CURDIR)/tmp_check/log/install.log 2>&1
+$(MAKE) -C $(top_builddir) DESTDIR='$(CURDIR)'/tmp_check/install install >'$(CURDIR)'/tmp_check/log/install.log 2>&1
cd $(srcdir) && TESTDIR='$(CURDIR)' PATH="$(CURDIR)/tmp_check/install$(bindir):$$PATH" $(call add_to_path,$(ld_library_path_var),$(CURDIR)/tmp_check/install$(libdir)) PGPORT='6$(DEF_PGPORT)' $(PROVE) $(PG_PROVE_FLAGS) $(PROVE_FLAGS) t/
endef