mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* mkconfig.rb: autoconf 2.50 support.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1445 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0fb0d42369
commit
79f2ee2f04
2 changed files with 6 additions and 2 deletions
|
@ -48,7 +48,7 @@ File.foreach "config.status" do |line|
|
|||
v_others << v
|
||||
end
|
||||
has_version = true if name == "MAJOR"
|
||||
elsif /^ac_given_srcdir=(.*)/ =~ line
|
||||
elsif /^(?:ac_given_)srcdir=(.*)/ =~ line
|
||||
v_fast << " CONFIG[\"srcdir\"] = \"" + File.expand_path($1) + "\"\n"
|
||||
has_srcdir = true
|
||||
elsif /^ac_given_INSTALL=(.*)/ =~ line
|
||||
|
@ -58,7 +58,7 @@ File.foreach "config.status" do |line|
|
|||
end
|
||||
|
||||
if not has_srcdir
|
||||
v_fast << " CONFIG[\"srcdir\"] = \"" + File.expand_path(srcdir) + "\"\n"
|
||||
v_fast << " CONFIG[\"srcdir\"] = \"" + File.expand_path(srcdir || '.') + "\"\n"
|
||||
end
|
||||
|
||||
if not has_version
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue