diff options
author | Igor Sysoev <igor@sysoev.ru> | 2008-06-26 07:59:30 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2008-06-26 07:59:30 +0000 |
commit | 8b55dc2fb40e20e3273fa98291f0b626f66eb9af (patch) | |
tree | 7a59a373893e60767f091f575070eae6ae4a716c | |
parent | eb03ea74588aa57fb224e85de50ff41ea63cf420 (diff) | |
download | nginx-8b55dc2fb40e20e3273fa98291f0b626f66eb9af.tar.gz nginx-8b55dc2fb40e20e3273fa98291f0b626f66eb9af.zip |
fix switch
-rw-r--r-- | docs/GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/GNUmakefile b/docs/GNUmakefile index 1198e4229..a8372d267 100644 --- a/docs/GNUmakefile +++ b/docs/GNUmakefile @@ -40,7 +40,7 @@ $(TEMP)/$(NGINX)/CHANGES.ru: docs/xml/nginx/changes.xml \ $(TEMP)/$(NGINX)/CHANGES: docs/xml/nginx/changes.xml \ docs/xslt/changes.xslt - test -d $(TEMP)/$(NGINX) || mkdir - p$(TEMP)/$(NGINX) + test -d $(TEMP)/$(NGINX) || mkdir -p $(TEMP)/$(NGINX) xsltproc --param lang "'en'" \ -o $(TEMP)/$(NGINX)/CHANGES \ |