* mkconfig.rb: fix for continued lines. based on a patch from
Marcus Rueckert <darix AT opensu.se> at [ruby-core:20420]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20587 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ca138145f5
commit
e2273eac85
@ -1,3 +1,8 @@
|
|||||||
|
Tue Dec 9 03:21:37 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* mkconfig.rb: fix for continued lines. based on a patch from
|
||||||
|
Marcus Rueckert <darix AT opensu.se> at [ruby-core:20420].
|
||||||
|
|
||||||
Tue Dec 9 00:54:01 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Tue Dec 9 00:54:01 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* tool/make-snapshot (package): enc.mk in snapshot is dummy and should
|
* tool/make-snapshot (package): enc.mk in snapshot is dummy and should
|
||||||
|
11
mkconfig.rb
11
mkconfig.rb
@ -56,14 +56,13 @@ File.foreach "config.status" do |line|
|
|||||||
continued_name = name
|
continued_name = name
|
||||||
next
|
next
|
||||||
end
|
end
|
||||||
when /^"(.+)"\s*(\\)?$/
|
when /^"(.*)"\s*(\\)?$/
|
||||||
if continued_line
|
if continued_line
|
||||||
continued_line << $1
|
continued_line << $1
|
||||||
unless $2
|
next if $2
|
||||||
val = continued_line.join("")
|
val = continued_line.join("")
|
||||||
name = continued_name
|
name = continued_name
|
||||||
continued_line = nil
|
continued_line = nil
|
||||||
end
|
|
||||||
end
|
end
|
||||||
when /^(?:ac_given_)?INSTALL=(.*)/
|
when /^(?:ac_given_)?INSTALL=(.*)/
|
||||||
v_fast << " CONFIG[\"INSTALL\"] = " + $1 + "\n"
|
v_fast << " CONFIG[\"INSTALL\"] = " + $1 + "\n"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user