1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

transform_mjit_header.rb: fix typo in r62326

Today's AIX CI failed due to this... 😇

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62332 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
k0kubun 2018-02-09 13:14:17 +00:00
parent f6ea97260d
commit 1a45a3a797

View file

@ -191,7 +191,7 @@ macro, code = MJITHeader.separate_macro_and_code(code) # note: this does not wor
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.