mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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
This commit is contained in:
parent
b24c4908e9
commit
b6fbbf332d
1 changed files with 4 additions and 0 deletions
|
@ -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.]+)"/
|
||||
|
|
Loading…
Reference in a new issue