[GRASS-SVN] r50581 - grass/trunk/gui/images
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Jan 31 05:06:30 EST 2012
Author: glynn
Date: 2012-01-31 02:06:30 -0800 (Tue, 31 Jan 2012)
New Revision: 50581
Modified:
grass/trunk/gui/images/Makefile
Log:
Fix rules for creating subdirectories
Modified: grass/trunk/gui/images/Makefile
===================================================================
--- grass/trunk/gui/images/Makefile 2012-01-31 09:32:28 UTC (rev 50580)
+++ grass/trunk/gui/images/Makefile 2012-01-31 10:06:30 UTC (rev 50581)
@@ -16,6 +16,9 @@
define symbols_rule
$(ETCDIR)/symbols/$(1)/%.png: symbols/$(1)/%.png | $(ETCDIR)/symbols/$(1)
$(INSTALL_DATA) $$< $$@
+
+$(ETCDIR)/symbols/$(1): | $(ETCDIR)/symbols
+ $(MKDIR) $$@
endef
$(foreach category,$(CATEGORIES),$(eval $(call symbols_rule,$(category))))
@@ -28,6 +31,3 @@
$(ETCDIR)/symbols: $(ETCDIR)
$(MKDIR) $@
-
-$(ETCDIR)/symbols/%: | $(ETCDIR)/symbols
- $(MKDIR) $@
More information about the grass-commit
mailing list