[GRASS-SVN] r31212 - grass/branches/develbranch_6/gui/wxpython

svn_grass at osgeo.org svn_grass at osgeo.org
Fri May 2 12:29:14 EDT 2008


Author: neteler
Date: 2008-05-02 12:29:13 -0400 (Fri, 02 May 2008)
New Revision: 31212

Modified:
   grass/branches/develbranch_6/gui/wxpython/Makefile
Log:
don't build v.digit if CXX not present

Modified: grass/branches/develbranch_6/gui/wxpython/Makefile
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/Makefile	2008-05-02 16:29:01 UTC (rev 31211)
+++ grass/branches/develbranch_6/gui/wxpython/Makefile	2008-05-02 16:29:13 UTC (rev 31212)
@@ -6,7 +6,9 @@
 
 ifneq ($(USE_WXWIDGETS),)
   ifneq ($(USE_PYTHON),)
-    SUBDIRS += vdigit
+    ifneq ($(strip $(CXX)),)
+       SUBDIRS += vdigit
+    endif
   endif
 endif
 



More information about the grass-commit mailing list