[GRASS-SVN] r36943 - grass/trunk

svn_grass at osgeo.org svn_grass at osgeo.org
Sat May 2 09:48:47 EDT 2009


Author: glynn
Date: 2009-05-02 09:48:47 -0400 (Sat, 02 May 2009)
New Revision: 36943

Modified:
   grass/trunk/configure
   grass/trunk/configure.in
Log:
Fix --with-wxwidgets= check (bug #579)


Modified: grass/trunk/configure
===================================================================
--- grass/trunk/configure	2009-05-02 13:19:12 UTC (rev 36942)
+++ grass/trunk/configure	2009-05-02 13:48:47 UTC (rev 36943)
@@ -15119,7 +15119,7 @@
 else
   echo "$ac_t""yes" 1>&6
   USE_WXWIDGETS="1"
-  if test "`basename $with_wxwidgets`" = "wx-config" ; then
+  if test "`basename $with_wxwidgets`" != "yes" ; then
     WX_CONFIG="$with_wxwidgets"
   fi
 

Modified: grass/trunk/configure.in
===================================================================
--- grass/trunk/configure.in	2009-05-02 13:19:12 UTC (rev 36942)
+++ grass/trunk/configure.in	2009-05-02 13:48:47 UTC (rev 36943)
@@ -1691,7 +1691,7 @@
 else
   AC_MSG_RESULT(yes)
   USE_WXWIDGETS="1"
-  if test "`basename $with_wxwidgets`" = "wx-config" ; then
+  if test "`basename $with_wxwidgets`" != "yes" ; then
     WX_CONFIG="$with_wxwidgets"
   fi
 



More information about the grass-commit mailing list