summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2020-06-05 10:45:30 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2020-10-12 16:21:05 +0900
commita68f005fd70050ce51284936c212efbc353ae735 (patch)
tree054d97f88a70a96b942675dc29969783afb31425
parent1adf93aa5492edcf5e4e4b7b9747bd50229e6f4d (diff)
downloadmruby-a68f005fd70050ce51284936c212efbc353ae735.tar.gz
mruby-a68f005fd70050ce51284936c212efbc353ae735.zip
Remove remaining `chomp:true` option from `Rakefile`.
-rw-r--r--Rakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index e07ca16a8..d5a7b95bb 100644
--- a/Rakefile
+++ b/Rakefile
@@ -173,7 +173,8 @@ end
presym_inc=presym_file+".inc"
file presym_inc => presym_file do
- presyms = File.readlines(presym_file, chomp: true)
+ presyms = File.readlines(presym_file)
+ presyms.each{|x| x.chomp!}
File.open(presym_inc, "w") do |f|
f.print "/* MRB_PRESYM_CSYM(sym, num) - symbol which is valid C id name */\n"
f.print "/* MRB_PRESYM_QSYM(sym, name, num) - symbol with alias name */\n"