From a9952689c71ffa1204151238820405316f1fe657 Mon Sep 17 00:00:00 2001 From: Ray Donnelly Date: Sat, 11 May 2013 22:36:51 +0100 Subject: MSYS: Force relpath and outpath into same pathing namespace. MSYS bash (and other msys-compiled executables) perform path transformation much like Cygwin. This causes syncqt path substitution to not work correctly, so use 'pwd -W' to get the Windows version (though with forward slashes) of both relpath and outpath. Change-Id: I808e3ef9206ed5f5bd8b6879d12afe664e589e0c Reviewed-by: Alvaro Burnett Reviewed-by: Oswald Buddenhagen --- configure | 2 ++ 1 file changed, 2 insertions(+) (limited to 'configure') diff --git a/configure b/configure index e1e455eeaf..8c6e8ef1f5 100755 --- a/configure +++ b/configure @@ -446,6 +446,8 @@ if [ "$OSTYPE" = "msys" ]; then BUILD_ON_MSYS=yes DEV_NULL=/tmp/empty-file echo "" > $DEV_NULL + relpath=`(cd "$relpath"; pwd -W)` + outpath=`pwd -W` fi #------------------------------------------------------------------------------- -- cgit v1.2.3