浏览代码

Fixed missing sql directory creation.

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@48402 15284696-431f-4ddb-bdfa-cd5b030d7da7
Soeren Gebbert 13 年之前
父节点
当前提交
5325725a5b
共有 1 个文件被更改,包括 3 次插入0 次删除
  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) $< $@