[GRASS-SVN] r67083 - grass/branches/releasebranch_7_0

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Dec 12 05:59:48 PST 2015


Author: martinl
Date: 2015-12-12 05:59:48 -0800 (Sat, 12 Dec 2015)
New Revision: 67083

Modified:
   grass/branches/releasebranch_7_0/configure
   grass/branches/releasebranch_7_0/configure.in
Log:
configure: fix pwd -W unknown option on mingw32
           (merge r67054 from trunk)


Modified: grass/branches/releasebranch_7_0/configure
===================================================================
--- grass/branches/releasebranch_7_0/configure	2015-12-12 13:58:26 UTC (rev 67082)
+++ grass/branches/releasebranch_7_0/configure	2015-12-12 13:59:48 UTC (rev 67083)
@@ -1197,7 +1197,7 @@
 
 
 if test "$MINGW32" = yes ; then
-  winpwd="$pwd -W"
+  winpwd="pwd -W"
 else
   winpwd="$pwd"
 fi

Modified: grass/branches/releasebranch_7_0/configure.in
===================================================================
--- grass/branches/releasebranch_7_0/configure.in	2015-12-12 13:58:26 UTC (rev 67082)
+++ grass/branches/releasebranch_7_0/configure.in	2015-12-12 13:59:48 UTC (rev 67083)
@@ -65,7 +65,7 @@
 AC_PATH_PROG(pwd, pwd, pwd)
 
 if test "$MINGW32" = yes ; then
-  winpwd="$pwd -W"
+  winpwd="pwd -W"
 else
   winpwd="$pwd"
 fi



More information about the grass-commit mailing list