diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-11-27 17:48:23 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-11-27 17:48:23 +0900 |
| commit | 5c405dea3d3e26f62877959c75a50fbaf1ece6a4 (patch) | |
| tree | c8e3a94720c3f6baf2df44fd12dc1fdd6c302eb9 /tasks | |
| parent | 2e0519de8991de2a59a0552e95a906cfada3e1e7 (diff) | |
| download | mruby-5c405dea3d3e26f62877959c75a50fbaf1ece6a4.tar.gz mruby-5c405dea3d3e26f62877959c75a50fbaf1ece6a4.zip | |
include changed from by quotes ("") to by brackets (<>); close #3032
Diffstat (limited to 'tasks')
| -rw-r--r-- | tasks/mrbgem_spec.rake | 12 | ||||
| -rw-r--r-- | tasks/mrbgems.rake | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/tasks/mrbgem_spec.rake b/tasks/mrbgem_spec.rake index 4fcfc8f83..e91823029 100644 --- a/tasks/mrbgem_spec.rake +++ b/tasks/mrbgem_spec.rake @@ -181,18 +181,18 @@ module MRuby def print_gem_init_header(f) print_gem_comment(f) f.puts %Q[#include <stdlib.h>] unless rbfiles.empty? - f.puts %Q[#include "mruby.h"] - f.puts %Q[#include "mruby/irep.h"] unless rbfiles.empty? + f.puts %Q[#include <mruby.h>] + f.puts %Q[#include <mruby/irep.h>] unless rbfiles.empty? end def print_gem_test_header(f) print_gem_comment(f) f.puts %Q[#include <stdio.h>] f.puts %Q[#include <stdlib.h>] - f.puts %Q[#include "mruby.h"] - f.puts %Q[#include "mruby/irep.h"] - f.puts %Q[#include "mruby/variable.h"] - f.puts %Q[#include "mruby/hash.h"] unless test_args.empty? + f.puts %Q[#include <mruby.h>] + f.puts %Q[#include <mruby/irep.h>] + f.puts %Q[#include <mruby/variable.h>] + f.puts %Q[#include <mruby/hash.h>] unless test_args.empty? end def test_dependencies diff --git a/tasks/mrbgems.rake b/tasks/mrbgems.rake index 1cf05ee4e..65368c303 100644 --- a/tasks/mrbgems.rake +++ b/tasks/mrbgems.rake @@ -31,7 +31,7 @@ MRuby.each_target do f.puts %Q[ * All manual changes will get lost.] f.puts %Q[ */] f.puts %Q[] - f.puts %Q[#include "mruby.h"] + f.puts %Q[#include <mruby.h>] f.puts %Q[] f.write gem_func_decls f.puts %Q[] |
