summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-01-31 12:52:22 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-01-31 12:52:22 +0900
commit4942adf68cd2d8ab0a3ca64a787bdf55e119b337 (patch)
treefc20e4c328eaeafa7a5ca14f400ba8c98d59ad60 /ext
parent0c4bbb46f10451b8c29db9ae310e7dd6822d7c95 (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