diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-10-18 13:07:32 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-10-18 13:07:32 +0900 |
| commit | 10edda96980c518714b54b10261677603ff1c5f4 (patch) | |
| tree | baa5ecbd3d490855caf443d20fbb4a34a40dd887 | |
| parent | 0d08f89159fd534f9d0d4892e413b0f4f35236f0 (diff) | |
| parent | 66e61c5ab87004c5b37b93dedeee1382686c2d20 (diff) | |
| download | mruby-10edda96980c518714b54b10261677603ff1c5f4.tar.gz mruby-10edda96980c518714b54b10261677603ff1c5f4.zip | |
Merge pull request #5559 from igrep/fix-commented-out-example
Fix a syntax error in commented-out code
| -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 |
