From 7524237b2de98f7e407ea227fb6ca6904153c0a5 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sat, 3 Sep 2022 09:27:39 +0000 Subject: extconf.rb: avoid RDoc errors during gem install RDoc doesn't seem to like <<'' (blank line) as a heredoc terminator. That said, RDoc scanning extconf.rb during "gem install" is unexpected and make no sense to me. Normal `rdoc' invocations seem to ignore extconf.rb. --- ext/mwrap/extconf.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ext') diff --git a/ext/mwrap/extconf.rb b/ext/mwrap/extconf.rb index 512ab82..1828407 100644 --- a/ext/mwrap/extconf.rb +++ b/ext/mwrap/extconf.rb @@ -11,15 +11,15 @@ have_library 'dl' have_library 'c' have_library 'execinfo' # FreeBSD -if try_link(<<'') +if try_link(<