append defines instead of assigning

This commit is contained in:
take_cheeze
2013-11-26 11:01:57 +09:00
parent f5bd87b9e6
commit a6bb888034
+2 -2
View File
@@ -4,7 +4,7 @@ MRuby::Build.new('debug') do |conf|
# include all core GEMs
conf.gembox 'full-core'
conf.cc.defines = %w(MRB_GC_FIXED_ARENA)
conf.cc.defines += %w(MRB_GC_FIXED_ARENA)
end
MRuby::Build.new do |conf|
@@ -12,5 +12,5 @@ MRuby::Build.new do |conf|
# include all core GEMs
conf.gembox 'full-core'
conf.cc.defines = %w(MRB_GC_FIXED_ARENA)
conf.cc.defines += %w(MRB_GC_FIXED_ARENA)
end