ruby-changes:50214
From: k0kubun <ko1@a...>
Date: Fri, 9 Feb 2018 22:14:23 +0900 (JST)
Subject: [ruby-changes:50214] k0kubun:r62332 (trunk): transform_mjit_header.rb: fix typo in r62326
k0kubun 2018-02-09 22:14:17 +0900 (Fri, 09 Feb 2018) New Revision: 62332 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=62332 Log: transform_mjit_header.rb: fix typo in r62326 Today's AIX CI failed due to this... :innocent: Modified files: trunk/tool/transform_mjit_header.rb Index: tool/transform_mjit_header.rb =================================================================== --- tool/transform_mjit_header.rb (revision 62331) +++ tool/transform_mjit_header.rb (revision 62332) @@ -191,7 +191,7 @@ macro, code = MJITHeader.separate_macro_ https://github.com/ruby/ruby/blob/trunk/tool/transform_mjit_header.rb#L191 code_to_check = "#{code}#{macro}" # macro should not affect code again if MJITHeader.conflicting_types?(code_to_check, cc, cflags) - cflags = "#{clags} -std=c99" # For AIX gcc + cflags = "#{cflags} -std=c99" # For AIX gcc end # Check initial file correctness in the manner of final output. -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/