summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorcho45 <[email protected]>2014-02-24 11:57:50 +0900
committercho45 <[email protected]>2014-02-24 12:01:54 +0900
commit03b1b62bde79158d508e5b37d5ba7a33ac9c258b (patch)
tree1b25a28a2da9aa903353a8d6557474aca8cf1de8
parent109f675f44ad0b03d8201d6d890c109f1529fd2b (diff)
downloadmruby-03b1b62bde79158d508e5b37d5ba7a33ac9c258b.tar.gz
mruby-03b1b62bde79158d508e5b37d5ba7a33ac9c258b.zip
Always include build_config.rb to compile dependency.
build_config.rb modifies `cc.defines` (eg. `DISABLE_GEMS`) so files depending on such flags should be rebuilt. Ref. (Failing scenario): https://gist.github.com/cho45/9181191
-rw-r--r--tasks/mruby_build_commands.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/mruby_build_commands.rake b/tasks/mruby_build_commands.rake
index d7b87514e..b0965ea09 100644
--- a/tasks/mruby_build_commands.rake
+++ b/tasks/mruby_build_commands.rake
@@ -110,7 +110,7 @@ module MRuby
File.read(file).gsub("\\\n ", "").scan(/^\S+:\s+(.+)$/).flatten.map {|s| s.split(' ') }.flatten
else
[]
- end
+ end + [ MRUBY_CONFIG ]
end
end