1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Hash marks in Makefile need to be escaped [Bug #16935]

This commit is contained in:
Nobuyoshi Nakada 2020-06-06 16:44:14 +09:00
parent ba6f1bcce9
commit 0c00a4176b
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

View file

@ -22,7 +22,7 @@ exts = {}
end
%>
MINIRUBY = <%=miniruby%>
SCRIPT_ARGS = <%=script_args%>
SCRIPT_ARGS = <%=script_args.gsub("#", "\\#")%>
EXTMK_ARGS = $(SCRIPT_ARGS) --gnumake=$(gnumake) --extflags="$(EXTLDFLAGS)" \
--make-flags="MINIRUBY='$(MINIRUBY)'"