[GRASS-SVN] r31213 - grass/trunk/gui/wxpython
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri May 2 12:29:23 EDT 2008
Author: neteler
Date: 2008-05-02 12:29:23 -0400 (Fri, 02 May 2008)
New Revision: 31213
Modified:
grass/trunk/gui/wxpython/Makefile
Log:
don't build v.digit if CXX not present
Modified: grass/trunk/gui/wxpython/Makefile
===================================================================
--- grass/trunk/gui/wxpython/Makefile 2008-05-02 16:29:13 UTC (rev 31212)
+++ grass/trunk/gui/wxpython/Makefile 2008-05-02 16:29:23 UTC (rev 31213)
@@ -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