diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-10-02 17:59:40 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-10-02 17:59:40 +0900 |
| commit | ff663075e4ed93e8609774bf9c7a46dce62fc2b6 (patch) | |
| tree | ee2d442de38101f48d953d76bb52d3d68e70b59a | |
| parent | 83992ee1632f426dff8f9c79709692bf6312403c (diff) | |
| parent | 62c58d3dad8b22c498bccd8d766b1542a6b23861 (diff) | |
| download | mruby-ff663075e4ed93e8609774bf9c7a46dce62fc2b6.tar.gz mruby-ff663075e4ed93e8609774bf9c7a46dce62fc2b6.zip | |
Merge pull request #2601 from mimaki/mrblib_absolute_path
Change mrblib's source path to absolute path
| -rw-r--r-- | mrblib/mrblib.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mrblib/mrblib.rake b/mrblib/mrblib.rake index d156a2683..19fd00d66 100644 --- a/mrblib/mrblib.rake +++ b/mrblib/mrblib.rake @@ -1,5 +1,5 @@ MRuby.each_target do - current_dir = File.dirname(__FILE__).relative_path_from(Dir.pwd) + current_dir = File.dirname(__FILE__) relative_from_root = File.dirname(__FILE__).relative_path_from(MRUBY_ROOT) current_build_dir = "#{build_dir}/#{relative_from_root}" |
