From 0c00a4176ba353d59d8c991428574ef2c2676674 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sat, 6 Jun 2020 16:44:14 +0900 Subject: Hash marks in Makefile need to be escaped [Bug #16935] --- template/configure-ext.mk.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'template') diff --git a/template/configure-ext.mk.tmpl b/template/configure-ext.mk.tmpl index 438e109eba..489f6e2a92 100644 --- a/template/configure-ext.mk.tmpl +++ b/template/configure-ext.mk.tmpl @@ -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)'" -- cgit v1.2.3