ubuntu ARM版本镜像仓库的automake 有bug

编译打包和其他
回复
q993917361
帖子: 1
注册时间: 2019-10-12 9:52
系统: ubuntu ARM

ubuntu ARM版本镜像仓库的automake 有bug

#1

帖子 q993917361 » 2019-10-12 10:05

Unescaped left brace in regex is illegal here in regex; marked by <-- HERE in m/\${ <-- HERE ([^ \t=:+{}]+)}/ at /usr/bin/automake line 3930.

sub substitute_ac_subst_variables

{

my ($text) = @_;

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

return $text;

}

需要修改为

$text =~ s/\$\{([^ \t=:+{}]+)}/substitute_ac_subst_variables_worker ($1)/ge;
头像
qy117121
论坛版主
帖子: 50530
注册时间: 2007-12-14 13:40
系统: Winbuntu
来自: 志虚国乌由市
联系:

Re: ubuntu ARM版本镜像仓库的automake 有bug

#2

帖子 qy117121 » 2019-10-12 11:12

其实bug应该去官方报 https://bugs.launchpad.net/
渠月 · QY   
本人只会灌水,不负责回答问题
无聊可以点一下→ http://u.nu/ubuntu

Ubuntu 20.04 快速设置指南,请配合浏浏览器自动翻译使用

邮箱 chuan@ubuntu.org.cn
回复