Yan
Yan Just a simple man.

automake message

automake message

正则报错

  • 错误:
1
Unescaped left brace in regex is illegal here in regex; marked by <-- HERE in m/\${ <-- HERE ([^ \t=:+{}]+)}/ at ...
  • 解决方法:

编辑automake

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

修改为

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