From: Andrew Dunstan Date: Sat, 18 Dec 2010 00:49:31 +0000 (-0500) Subject: Work around make changes on modern Mingw to allow release 8.2 regression tests to... X-Git-Tag: REL8_2_20~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=43a7206fcca3f77503be481565b2a855b9044550;p=thirdparty%2Fpostgresql.git Work around make changes on modern Mingw to allow release 8.2 regression tests to work. --- 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