diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-01-29 05:43:14 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-01-29 05:43:14 -0800 |
| commit | c14d34e59d0e067c7004bda40a9f91a264bb6dd5 (patch) | |
| tree | 556edcbda7cb839eab22e368a191900155c03c13 /tasks/mruby_build.rake | |
| parent | 1724042225c4a4ce8b2222569c5b86937729d11a (diff) | |
| parent | c32a16130f53816e13812d8f0d9cf0a19794f825 (diff) | |
| download | mruby-c14d34e59d0e067c7004bda40a9f91a264bb6dd5.tar.gz mruby-c14d34e59d0e067c7004bda40a9f91a264bb6dd5.zip | |
Merge pull request #790 from carsonmcdonald/nogemdefchange
Change the way that the DISABLE_GEMS flag is set.
Diffstat (limited to 'tasks/mruby_build.rake')
| -rw-r--r-- | tasks/mruby_build.rake | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tasks/mruby_build.rake b/tasks/mruby_build.rake index cd9f77fc4..645656417 100644 --- a/tasks/mruby_build.rake +++ b/tasks/mruby_build.rake @@ -83,7 +83,11 @@ module MRuby instance_eval(&block) compilers.each do |compiler| - compiler.defines -= %w(DISABLE_GEMS) if respond_to?(:enable_gems?) && enable_gems? + if respond_to?(:enable_gems?) && enable_gems? + compiler.defines -= %w(DISABLE_GEMS) + else + compiler.defines += %w(DISABLE_GEMS) + end compiler.define_rules build_dir end end |
