[GRASS-SVN] r43131 - grass/branches/develbranch_6/lib/python

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Aug 16 02:56:47 EDT 2010


Author: martinl
Date: 2010-08-16 06:56:47 +0000 (Mon, 16 Aug 2010)
New Revision: 43131

Modified:
   grass/branches/develbranch_6/lib/python/Makefile
Log:
disable compiling ctypes on Windows, reenable when #1125 will be fixed

Modified: grass/branches/develbranch_6/lib/python/Makefile
===================================================================
--- grass/branches/develbranch_6/lib/python/Makefile	2010-08-15 23:28:05 UTC (rev 43130)
+++ grass/branches/develbranch_6/lib/python/Makefile	2010-08-16 06:56:47 UTC (rev 43131)
@@ -15,10 +15,14 @@
 PYFILES := $(patsubst %,$(DSTDIR)/%.py,$(MODULES) __init__)
 PYCFILES := $(patsubst %,$(DSTDIR)/%.pyc,$(MODULES) __init__)
 
-CLEAN_SUBDIRS = ctypes
+ifeq ($(MINGW),)
+	CLEAN_SUBDIRS = ctypes
+endif
 
 default: $(PYFILES) $(PYCFILES) $(GDIR)/__init__.py $(GDIR)/__init__.pyc
+ifeq ($(MINGW),)
 	-$(MAKE) -C ctypes || echo $(CURDIR)/ctypes >> $(ERRORLOG)
+endif
 
 $(PYDIR):
 	$(MKDIR) $@



More information about the grass-commit mailing list