From: Paul Ramsey Date: Wed, 7 Mar 2012 19:31:38 +0000 (+0000) Subject: Replace " with ' in mingw pwd call X-Git-Tag: 2.0.0beta2~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=85462952c81fcc4de213d78aa74f2285a5882441;p=postgis Replace " with ' in mingw pwd call git-svn-id: http://svn.osgeo.org/postgis/trunk@9422 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/configure.ac b/configure.ac index 626e3c023..a21ed0d13 100644 --- a/configure.ac +++ b/configure.ac @@ -103,7 +103,7 @@ dnl for in-place regression tests dnl case $host_os in *mingw*) - PWDREGRESS="bash -c \"pwd -W\"" + PWDREGRESS="bash -c 'pwd -W'" ;; *) PWDREGRESS="pwd"