summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-01-31 12:52:22 +0900
committerNARUSE, Yui <naruse@airemix.jp>2020-02-13 14:07:14 +0900
commit78cbe7106b67d007ffdcc1276b352212eaaef4b2 (patch)
treeda58fb9041f6b80678b827c49358170b53256758 /ext
parentb8e62ccaecf49372833d7eeeb3fdfded4bb2f042 (diff)
Return the makefile content
Block for `create_makefile` is expected to return the content of the makefile.
Diffstat (limited to 'ext')
-rw-r--r--ext/-test-/cxxanyargs/extconf.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/-test-/cxxanyargs/extconf.rb b/ext/-test-/cxxanyargs/extconf.rb
index 97b09ce583..08d8c83010 100644
--- a/ext/-test-/cxxanyargs/extconf.rb
+++ b/ext/-test-/cxxanyargs/extconf.rb
@@ -28,5 +28,6 @@ if ok
create_makefile("-test-/cxxanyargs") do |mk|
mk << "FAILURES #{['=', failures].join(' ')}\n"
mk << ".IGNORE: $(FAILURES:.cpp=.o)\n" unless $mswin
+ mk
end
end