aboutsummaryrefslogtreecommitdiffstats
path: root/tool
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-08-17 01:13:00 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-08-17 01:13:00 +0000
commitd62864088f0be86618bcc396bcc7fac0e1782a5e (patch)
tree5b9ad48218982345d01a218edaa30e23f0bb1957 /tool
parent79d6991a9ec1bba03cc8e143845375d741ca2d0e (diff)
downloadruby-d62864088f0be86618bcc396bcc7fac0e1782a5e.tar.gz
make-snapshot: remove $GZIP
* tool/make-snapshot: remove deprecated environment variable GZIP to its command line arguments. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55947 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool')
-rwxr-xr-xtool/make-snapshot4
1 files changed, 4 insertions, 0 deletions
diff --git a/tool/make-snapshot b/tool/make-snapshot
index f1663a3e22..e96deb003c 100755
--- a/tool/make-snapshot
+++ b/tool/make-snapshot
@@ -44,6 +44,10 @@ PACKAGES = {
"zip" => %w".zip zip -qr",
}
+if gzip = ENV.delete("GZIP")
+ PACKAGES["gzip"].concat(gzip.shellsplit)
+end
+
ENV["LC_ALL"] = ENV["LANG"] = "C"
SVNURL = URI.parse("http://svn.ruby-lang.org/repos/ruby/")
RUBY_VERSION_PATTERN = /^\#define\s+RUBY_VERSION\s+"([\d.]+)"/