summaryrefslogtreecommitdiffhomepage
path: root/travis_config.rb
diff options
context:
space:
mode:
authortake_cheeze <[email protected]>2013-11-26 11:01:57 +0900
committertake_cheeze <[email protected]>2013-11-26 11:01:57 +0900
commita6bb888034720e26ae413d1e4645c6fe1086f10b (patch)
tree0650589af7cc4cd0dee8d6b4237e5ad17073402e /travis_config.rb
parentf5bd87b9e6d0d8a84cf866b4847c1416e4f5c622 (diff)
downloadmruby-a6bb888034720e26ae413d1e4645c6fe1086f10b.tar.gz
mruby-a6bb888034720e26ae413d1e4645c6fe1086f10b.zip
append defines instead of assigning
Diffstat (limited to 'travis_config.rb')
-rw-r--r--travis_config.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/travis_config.rb b/travis_config.rb
index 360cf3337..4fad04797 100644
--- a/travis_config.rb
+++ b/travis_config.rb
@@ -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