From 295f2a3305b4af3fd07f5dd0ee8cf6d9b2ce2ffc Mon Sep 17 00:00:00 2001 From: Yusuke Endoh Date: Thu, 4 Apr 2024 13:30:27 +0900 Subject: [PATCH] Prevent a warning: literal string will be frozen in the future --- enc/make_encmake.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enc/make_encmake.rb b/enc/make_encmake.rb index 09e19f6551..9761edd6d9 100755 --- a/enc/make_encmake.rb +++ b/enc/make_encmake.rb @@ -124,7 +124,7 @@ if File.exist?(depend = File.join($srcdir, "depend")) erb = ERB.new(File.read(depend), trim_mode: '%') erb.filename = depend tmp = erb.result(binding) - dep = "\n#### depend ####\n\n" << depend_rules(tmp).join + dep = "\n#### depend ####\n\n" + depend_rules(tmp).join else dep = "" end