summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--template/fake.rb.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/template/fake.rb.in b/template/fake.rb.in
index 27df02e966..5788af1781 100644
--- a/template/fake.rb.in
+++ b/template/fake.rb.in
@@ -44,7 +44,7 @@ fake = File.join(top_srcdir, "tool/fake.rb")
eval(File.binread(fake), nil, fake)
ropt = "-r#{__FILE__}"
["RUBYOPT"].each do |flag|
- opt = ENV[flag].b
- opt = opt ? ([ropt] | opt.split).join(" ") : ropt
+ opt = ENV[flag]
+ opt = opt ? ([ropt] | opt.b.split).join(" ") : ropt
ENV[flag] = opt
end