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

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Jun 17 02:30:20 PDT 2013


Author: hamish
Date: 2013-06-17 02:30:20 -0700 (Mon, 17 Jun 2013)
New Revision: 56755

Modified:
   grass/branches/develbranch_6/gui/wxpython/Makefile
Log:
limit install to .py where it can be (#2006), linewrap (merge from trunk)

Modified: grass/branches/develbranch_6/gui/wxpython/Makefile
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/Makefile	2013-06-17 09:24:52 UTC (rev 56754)
+++ grass/branches/develbranch_6/gui/wxpython/Makefile	2013-06-17 09:30:20 UTC (rev 56755)
@@ -9,14 +9,17 @@
 
 ETCDIR = $(ETC)/wxpython
 
-SRCFILES := $(wildcard compat/* icons/*.* scripts/* xml/*) \
-	$(wildcard core/* dbmgr/* gcp/* gmodeler/* gui_core/* lmgr/* location_wizard/* \
-	mapdisp/* modules/* nviz/* psmap/* vdigit/* wxplot/* ) \
-	gis_set.py wxgui.py README
-DSTFILES := $(patsubst %,$(ETCDIR)/%,$(SRCFILES)) $(patsubst %.py,$(ETCDIR)/%.pyc,$(filter %.py,$(SRCFILES)))
+SRCFILES := $(wildcard compat/*.py icons/*.py scripts/*.py xml/*) \
+	$(wildcard core/*.py dbmgr/*.py gcp/*.py gmodeler/*.py gui_core/*.py \
+	lmgr/*.py location_wizard/*.py mapdisp/*.py modules/*.py nviz/*.py \
+	psmap/*.py vdigit/*.py wxplot/*.py ) gis_set.py wxgui.py README
 
-PYDSTDIRS := $(patsubst %,$(ETCDIR)/%,core dbmgr gcp gmodeler gui_core lmgr location_wizard \
-	mapdisp modules nviz psmap vdigit wxplot)
+DSTFILES := $(patsubst %,$(ETCDIR)/%,$(SRCFILES)) \
+	$(patsubst %.py,$(ETCDIR)/%.pyc,$(filter %.py,$(SRCFILES)))
+
+PYDSTDIRS := $(patsubst %,$(ETCDIR)/%,core dbmgr gcp gmodeler gui_core \
+	lmgr location_wizard mapdisp modules nviz psmap vdigit wxplot)
+
 DSTDIRS := $(patsubst %,$(ETCDIR)/%,compat icons scripts xml)
 
 default: $(DSTFILES) menustrings.py



More information about the grass-commit mailing list