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