diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-01-21 03:00:50 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-01-21 03:00:50 -0800 |
| commit | 73fa0d6355353f622e4446075f98a02761f03118 (patch) | |
| tree | 5f46537342c250ec6c277b7e86ad45ca2ac44e59 /tasks | |
| parent | 84ef21a4d5616f50b1182af61996983e39a08554 (diff) | |
| parent | 121001c4f5bed42d5fb56786c5258026a9c325f8 (diff) | |
| download | mruby-73fa0d6355353f622e4446075f98a02761f03118.tar.gz mruby-73fa0d6355353f622e4446075f98a02761f03118.zip | |
Merge pull request #759 from skandhas/pr-fix-build-on-cygwin
fix build faild on Cygwin Environment
Diffstat (limited to 'tasks')
| -rw-r--r-- | tasks/mruby_build.rake | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tasks/mruby_build.rake b/tasks/mruby_build.rake index 3ce2f4992..b9e0d2749 100644 --- a/tasks/mruby_build.rake +++ b/tasks/mruby_build.rake @@ -63,12 +63,11 @@ module MRuby if ENV['OS'] == 'Windows_NT' @exts = Exts.new('.o', '.exe', '.a') - @file_separator = '\\' else @exts = Exts.new('.o', '', '.a') - @file_separator = '/' end + @file_separator = '/' @cc = Command::Compiler.new(self, %w(.c)) @cxx = Command::Compiler.new(self, %w(.cc .cxx .cpp)) @objc = Command::Compiler.new(self, %w(.m)) |
