Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@nginx.com>2012-08-02 18:58:36 +0400
committerRuslan Ermilov <ru@nginx.com>2012-08-02 18:58:36 +0400
commit49e6d2c95f27707de08886ad29e213a09ff3bedd (patch)
tree2567837d964a8d94e5adce8d0e10d920761c8c01 /misc
parentc722e8a5bf85d986acb93b1e3cdfebd42efd9191 (diff)
Removed the need in Perl to generate ZIP archive of nginx/Windows.
Diffstat (limited to 'misc')
-rw-r--r--misc/GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/GNUmakefile b/misc/GNUmakefile
index 22a9abb33..37574351e 100644
--- a/misc/GNUmakefile
+++ b/misc/GNUmakefile
@@ -92,7 +92,7 @@ zip:
mkdir -p $(TEMP)/$(NGINX)/temp
svn export -rHEAD conf $(TEMP)/$(NGINX)/conf/
- perl -pi -e 's/$$/\r/' $(TEMP)/$(NGINX)/conf/*
+ sed -i '' -e "s/$$/`printf '\r'`/" $(TEMP)/$(NGINX)/conf/*
svn export -rHEAD contrib $(TEMP)/$(NGINX)/contrib/
svn export -rHEAD docs/html $(TEMP)/$(NGINX)/html/
@@ -111,7 +111,7 @@ zip:
cp -p $(OBJS)/lib/$(PCRE)/LICENCE \
$(TEMP)/$(NGINX)/docs/PCRE.LICENCE
- perl -ne 'print if /^ \(C\) 1995-20/ .. /^ jloup\@gzip.org/' \
+ sed -ne '/^ (C) 1995-20/,/^ jloup@gzip\.org/p' \
$(OBJS)/lib/$(ZLIB)/README \
> $(TEMP)/$(NGINX)/docs/zlib.LICENSE