aboutsummaryrefslogtreecommitdiffstats
path: root/chinese/Make.lang
diff options
context:
space:
mode:
authorFrank Lichtenheld <djpig>2004-06-18 02:18:19 +0000
committerFrank Lichtenheld <djpig>2004-06-18 02:18:19 +0000
commit7aee8439463f0fe54724197171a9b193e3ee497d (patch)
tree0230b932ffbc1bda4ad9ba2d939fe9278faf408d /chinese/Make.lang
parent37ca5f1db07a47395c0f2cfbd7ef50942b609868 (diff)
The directory tests were missing from the install rules. This can to lead
to creation of files instead of directories. CVS version numbers chinese/Make.lang: 1.36 -> 1.37
Diffstat (limited to 'chinese/Make.lang')
-rw-r--r--chinese/Make.lang3
1 files changed, 3 insertions, 0 deletions
diff --git a/chinese/Make.lang b/chinese/Make.lang
index e904a257a35..51e65d84f01 100644
--- a/chinese/Make.lang
+++ b/chinese/Make.lang
@@ -73,14 +73,17 @@ $(TOHK): $(TOTW)
# Is there anyway to combine the following two rules into one?
$(HTMLDIR)/%.zh-cn.html: %.zh-cn.html
+ @test -d $(HTMLDIR) || mkdir -m g+w -p $(HTMLDIR)
@echo copying $(@F) to $(HTMLDIR)
-@install -m 664 -p $(@F) $(HTMLDIR)
$(HTMLDIR)/%.zh-hk.html: %.zh-hk.html
+ @test -d $(HTMLDIR) || mkdir -m g+w -p $(HTMLDIR)
@echo copying $(@F) to $(HTMLDIR)
-@install -m 664 -p $(@F) $(HTMLDIR)
$(HTMLDIR)/%.zh-tw.html: %.zh-tw.html
+ @test -d $(HTMLDIR) || mkdir -m g+w -p $(HTMLDIR)
@echo copying $(@F) to $(HTMLDIR)
-@install -m 664 -p $(@F) $(HTMLDIR)
# Create %.html -> %.zh-tw.html symlink if no English version of %.wml exists

© 2014-2024 Faster IT GmbH | imprint | privacy policy