mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
make-snapshot: remove -j option from GNUMAKEFLAGS
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62578 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
bf9d849b23
commit
34dc3b983b
1 changed files with 5 additions and 0 deletions
|
@ -54,6 +54,11 @@ if gzip = ENV.delete("GZIP")
|
|||
PACKAGES["gzip"].concat(gzip.shellsplit)
|
||||
end
|
||||
|
||||
if mflags = ENV["GNUMAKEFLAGS"] and /\A-(\S*)j\d*/ =~ mflags
|
||||
mflags = mflags.gsub(/(\A|\s)(-\S*)j\d*/, '\1\2')
|
||||
mflags.strip!
|
||||
ENV["GNUMAKEFLAGS"] = (mflags unless mflags.empty?)
|
||||
end
|
||||
ENV["LC_ALL"] = ENV["LANG"] = "C"
|
||||
SVNURL = URI.parse("http://svn.ruby-lang.org/repos/ruby/")
|
||||
GITURL = URI.parse("git://github.com/ruby/ruby.git")
|
||||
|
|
Loading…
Add table
Reference in a new issue