diff options
author | Tom Lane | 2011-06-14 16:00:37 +0000 |
---|---|---|
committer | Tom Lane | 2011-06-14 20:40:35 +0000 |
commit | a61b6b7d184dc7aa2475eb4d293990404be5fedd (patch) | |
tree | 9bb2f23debe57aeab424ce4267f1c2f6e1019bec /src/test | |
parent | 90132f62a2847fb2bc93a7c2366a139fe12bf365 (diff) |
Fix assorted issues with build and install paths containing spaces.
Apparently there is no buildfarm critter exercising this case after all,
because it fails in several places. With this patch, build, install,
check-world, and installcheck-world pass for me on OS X.
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/isolation/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/isolation/Makefile b/src/test/isolation/Makefile index 7cbcd4b4038..0fe8d608cc8 100644 --- a/src/test/isolation/Makefile +++ b/src/test/isolation/Makefile @@ -73,7 +73,7 @@ maintainer-clean: distclean rm -f specparse.c specscanner.c installcheck: all - ./pg_isolation_regress --psqldir=$(PSQLDIR) --inputdir=$(srcdir) --schedule=$(srcdir)/isolation_schedule + ./pg_isolation_regress --psqldir="$(PSQLDIR)" --inputdir=$(srcdir) --schedule=$(srcdir)/isolation_schedule # We can't support "make check" because isolationtester requires libpq, and # in fact (on typical platforms using shared libraries) requires libpq to |