From 43a7206fcca3f77503be481565b2a855b9044550 Mon Sep 17 00:00:00 2001 From: Andrew Dunstan Date: Fri, 17 Dec 2010 19:49:31 -0500 Subject: [PATCH] Work around make changes on modern Mingw to allow release 8.2 regression tests to work. --- src/test/regress/GNUmakefile | 4 ++-- 1 file 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 -- 2.39.5