[GRASS-SVN] r60064 - grass/trunk/gui/scripts
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun May 4 02:52:00 PDT 2014
Author: martinl
Date: 2014-05-04 02:52:00 -0700 (Sun, 04 May 2014)
New Revision: 60064
Modified:
grass/trunk/gui/scripts/Makefile
Log:
fix gui/scripts Makefile
Modified: grass/trunk/gui/scripts/Makefile
===================================================================
--- grass/trunk/gui/scripts/Makefile 2014-05-04 09:16:42 UTC (rev 60063)
+++ grass/trunk/gui/scripts/Makefile 2014-05-04 09:52:00 UTC (rev 60064)
@@ -7,18 +7,18 @@
DSTDIR = $(GUIDIR)/scripts
ifdef MINGW
-PYFILES := $(patsubst %.py, $(GUIDIR)/%.py, $(filter %.py, $(PY_SOURCES)))
+PYFILES := $(patsubst %.py, $(DSTDIR)/%.py, $(filter %.py, $(PY_SOURCES)))
else
-PYFILES := $(patsubst %.py, $(GUIDIR)/%, $(filter %.py, $(PY_SOURCES)))
+PYFILES := $(patsubst %.py, $(DSTDIR)/%, $(filter %.py, $(PY_SOURCES)))
endif
default: $(PYFILES)
-$(GUIDIR)/%: %.py | $(GUIDIR)
+$(DSTDIR)/%: %.py | $(DSTDIR)
$(INSTALL) $< $@
-$(GUIDIR)/%.py: %.py | $(GUIDIR)
+$(DSTDIR)/%.py: %.py | $(DSTDIR)
$(INSTALL) $< $@
-$(GUIDIR):
+$(DSTDIR):
-test -d $@ | $(MKDIR) $@
More information about the grass-commit
mailing list