diff options
author | Tom Lane | 2011-06-16 01:45:23 +0000 |
---|---|---|
committer | Tom Lane | 2011-06-16 01:45:23 +0000 |
commit | 1568fa75bcf393977425ccb73752b98883a9f375 (patch) | |
tree | 1e7484b81eae58e48c679581fa9e509900c529f2 /src/test | |
parent | e1ccaff6eea1b48f4b9b28cabaf0f990119b0d19 (diff) |
Use single quotes in preference to double quotes for protecting pathnames.
Per recommendation from Peter. Neither choice is bulletproof, but this
is the existing style and it does help prevent unexpected environment
variable substitution.
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 0fe8d608cc8..80a8a25bb3f 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 |