diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2010-12-17 19:49:31 -0500 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2010-12-17 19:49:31 -0500 |
commit | 43a7206fcca3f77503be481565b2a855b9044550 (patch) | |
tree | 9f579fcebcd3a4fae852aa1ccf4978dbb1ab89bd /src | |
parent | f2f63551cdafcdec4169557122522229aa2530e8 (diff) | |
download | postgresql-43a7206fcca3f77503be481565b2a855b9044550.tar.gz postgresql-43a7206fcca3f77503be481565b2a855b9044550.zip |
Work around make changes on modern Mingw to allow release 8.2 regression tests to work.
Diffstat (limited to 'src')
-rw-r--r-- | src/test/regress/GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/GNUmakefile b/src/test/regress/GNUmakefile index f2319d2a79b..d126ae5fa40 100644 --- a/src/test/regress/GNUmakefile +++ b/src/test/regress/GNUmakefile @@ -95,8 +95,8 @@ ifneq ($(PORTNAME),win32) abs_srcdir := $(shell cd $(srcdir) && pwd) abs_builddir := $(shell pwd) else -abs_srcdir := $(shell cd $(srcdir) && pwd -W) -abs_builddir := $(shell pwd -W) +abs_srcdir := $(shell cd $(srcdir) && sh -c "pwd -W") +abs_builddir := $(shell sh -c "pwd -W") endif testtablespace := $(abs_builddir)/testtablespace |