diff options
| author | skandhas <[email protected]> | 2013-01-21 14:34:30 +0800 |
|---|---|---|
| committer | skandhas <[email protected]> | 2013-01-21 14:34:30 +0800 |
| commit | 121001c4f5bed42d5fb56786c5258026a9c325f8 (patch) | |
| tree | d54f0961e253d6e385947dba6dc1b2bf4a18caa5 | |
| parent | 8e86ff2283d427b5cb2a02607e1aab998cb5090c (diff) | |
| download | mruby-121001c4f5bed42d5fb56786c5258026a9c325f8.tar.gz mruby-121001c4f5bed42d5fb56786c5258026a9c325f8.zip | |
fix build faild on Cygwin Environment
| -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 bcae9dfd9..42120b3b4 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)) |
