From d62864088f0be86618bcc396bcc7fac0e1782a5e Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 17 Aug 2016 01:13:00 +0000 Subject: 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 --- tool/make-snapshot | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tool') 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.]+)"/ -- cgit v1.2.3