From 8ffeda041b92f1dbdc05d9356e05d9f624922ef3 Mon Sep 17 00:00:00 2001 From: naruse Date: Sun, 29 Aug 2010 07:09:40 +0000 Subject: * common.mk (node_name.inc): remove command option -n and give file as stdin, because IronRuby 1.1 still doesn't support it. So now we can use ir.exe as BASERUBY. * tool/node_name.rb: read stdin with while gets. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29138 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- tool/node_name.rb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'tool/node_name.rb') diff --git a/tool/node_name.rb b/tool/node_name.rb index 5d39e9f5cc..fef7720a5a 100755 --- a/tool/node_name.rb +++ b/tool/node_name.rb @@ -1,4 +1,6 @@ -#! ./miniruby -n -if ~/enum node_type \{/..~/^\};/ - ~/(NODE_.+),/ and puts(" case #{$1}:\n\treturn \"#{$1}\";") +#! ./miniruby +while gets + if ~/enum node_type \{/..~/^\};/ + ~/(NODE_.+),/ and puts(" case #{$1}:\n\treturn \"#{$1}\";") + end end -- cgit v1.2.1