Browse Source

Fixed missing sql directory creation.

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@48402 15284696-431f-4ddb-bdfa-cd5b030d7da7
Soeren Gebbert 13 years ago
parent
commit
5325725a5b
1 changed files with 3 additions and 0 deletions
  1. 3 0
      lib/temporal/Makefile

+ 3 - 0
lib/temporal/Makefile

@@ -10,5 +10,8 @@ DSTFILES := $(patsubst %.sql,$(SQLDIR)/%.sql,$(SQLFILES))
 
 default: $(DSTFILES)
 
+$(SQLDIR):  
+	$(MKDIR) $@
+
 $(SQLDIR)/%.sql: %.sql | $(SQLDIR)
 	$(INSTALL_DATA) $< $@