mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
revert previous commit.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48436 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b5cda0ffb6
commit
c93dd36e0e
3 changed files with 3 additions and 13 deletions
|
@ -1,10 +1,3 @@
|
||||||
Sat Nov 15 19:40:34 2014 NAKAMURA Usaku <usa@ruby-lang.org>
|
|
||||||
|
|
||||||
* lib/mkmf.rb (depend_rules): support comments during a line.
|
|
||||||
|
|
||||||
* lib/mkmf.rb (depend_rules): apply RULE_SUBST even if the dependency
|
|
||||||
file contains path.
|
|
||||||
|
|
||||||
Sat Nov 15 19:25:46 2014 Tanaka Akira <akr@fsij.org>
|
Sat Nov 15 19:25:46 2014 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
* common.mk: Remove comments in Dependency lines.
|
* common.mk: Remove comments in Dependency lines.
|
||||||
|
|
|
@ -2050,11 +2050,8 @@ RULES
|
||||||
suffixes << m[1] << m[2]
|
suffixes << m[1] << m[2]
|
||||||
implicit = [[m[1], m[2]], [m.post_match]]
|
implicit = [[m[1], m[2]], [m.post_match]]
|
||||||
next
|
next
|
||||||
elsif RULE_SUBST and /\A(?!\s*\w+\s*=)[$\w][^#]*:/ =~ line
|
elsif RULE_SUBST and /\A(?!\s*\w+\s*=)[$\w][^#]*:/ =~ line
|
||||||
line.sub!(%r'(\s)*\#.*$', '')
|
line.gsub!(%r"(\s)(?!\.)([^$(){}+=:\s\/\\,]+)(?=\s|\z)") {$1 + RULE_SUBST % $2}
|
||||||
comment = $& || ''
|
|
||||||
line.gsub!(%r"(\s)(?!\.)([^$(){}+=:\s\\,]+)(?=\s|\z)") {$1 + RULE_SUBST % $2}
|
|
||||||
line = line.chomp + comment + "\n"
|
|
||||||
end
|
end
|
||||||
depout << line
|
depout << line
|
||||||
end
|
end
|
||||||
|
|
|
@ -66,7 +66,7 @@ module Kernel
|
||||||
|
|
||||||
begin
|
begin
|
||||||
RUBYGEMS_ACTIVATION_MONITOR.exit
|
RUBYGEMS_ACTIVATION_MONITOR.exit
|
||||||
return gem_original_require(spec.to_fullpath(path) || path)
|
return gem_original_require(path)
|
||||||
end if spec
|
end if spec
|
||||||
|
|
||||||
# Attempt to find +path+ in any unresolved gems...
|
# Attempt to find +path+ in any unresolved gems...
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue