解决automake1.14编译问题

解决:Unescaped left brace in regex is illegal here in regex; marked by <-- HERE in m/\${ <-- HERE ([^ \t=

$text =~ s/\${([^ \t=:+{}]+)}/substitute_ac_subst_variables_worker 
($1)/ge;

修改为

$text =~ s/\$[{]([^ \t=:+{}]+)}/substitute_ac_subst_variables_worker ($1)/ge;
解决: Perl Wide character in print

在文件开头加入:

binmode STDOUT, ':utf8';
posted @ 2020-09-07 11:50  duapple  阅读(8)  评论(0编辑  收藏  举报  来源