[GRASS-SVN] r49249 - grass/branches/releasebranch_6_4/lib/python
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Nov 14 16:17:40 EST 2011
Author: neteler
Date: 2011-11-14 13:17:40 -0800 (Mon, 14 Nov 2011)
New Revision: 49249
Modified:
grass/branches/releasebranch_6_4/lib/python/Makefile
Log:
restore possibility to compile with make < 3.81
Modified: grass/branches/releasebranch_6_4/lib/python/Makefile
===================================================================
--- grass/branches/releasebranch_6_4/lib/python/Makefile 2011-11-14 18:36:31 UTC (rev 49248)
+++ grass/branches/releasebranch_6_4/lib/python/Makefile 2011-11-14 21:17:40 UTC (rev 49249)
@@ -24,16 +24,20 @@
$(PYDIR):
$(MKDIR) $@
-$(GDIR): | $(PYDIR)
+$(GDIR):
+ $(MAKE) $(PYDIR)
$(MKDIR) $@
-$(DSTDIR): | $(GDIR)
+$(DSTDIR):
+ $(MAKE) $(GDIR)
$(MKDIR) $@
-$(GDIR)/__init__.py: grass__init__.py | $(GDIR)
+$(GDIR)/__init__.py: grass__init__.py
+ $(MAKE) $(GDIR)
$(INSTALL_DATA) $< $@
-$(DSTDIR)/%: % | $(DSTDIR)
+$(DSTDIR)/%: %
+ $(MAKE) $(DSTDIR)
$(INSTALL_DATA) $< $@
setup.py: setup.py.sed
More information about the grass-commit
mailing list