diff options
| author | YAMAMOTO Yuji <[email protected]> | 2021-10-18 12:45:55 +0900 |
|---|---|---|
| committer | YAMAMOTO Yuji <[email protected]> | 2021-10-18 12:45:55 +0900 |
| commit | 66e61c5ab87004c5b37b93dedeee1382686c2d20 (patch) | |
| tree | baa5ecbd3d490855caf443d20fbb4a34a40dd887 | |
| parent | 0d08f89159fd534f9d0d4892e413b0f4f35236f0 (diff) | |
| download | mruby-66e61c5ab87004c5b37b93dedeee1382686c2d20.tar.gz mruby-66e61c5ab87004c5b37b93dedeee1382686c2d20.zip | |
Fix a syntax error in commented-out code
By uncommenting the line changed by this commit, `ruby -c build_config/default.rb` complains of a syntax error due to the illegally nested double quotes
| -rw-r--r-- | build_config/default.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build_config/default.rb b/build_config/default.rb index 894f1055b..f5e2cbb71 100644 --- a/build_config/default.rb +++ b/build_config/default.rb @@ -42,7 +42,7 @@ MRuby::Build.new do |conf| # linker.library_paths = [] # linker.option_library = '-l%s' # linker.option_library_path = '-L%s' - # linker.link_options = "%{flags} -o "%{outfile}" %{objs} %{libs}" + # linker.link_options = %Q[%{flags} -o "%{outfile}" %{objs} %{libs}] # end # Archiver settings |
