[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: regex bug on arch
From: |
Philipp Thomas |
Subject: |
Re: regex bug on arch |
Date: |
Tue, 10 May 2016 07:42:15 +0200 |
User-agent: |
Mutt/1.6.0 (2016-04-01) |
* NightStrike (address@hidden) [20160510 04:20]:
> 1.15
This has been fixed in git with commit
13f00eb4493c217269b76614759e452d8302955e :
diff --git a/bin/automake.in b/bin/automake.in
index a3a0aa3..2c8f31e 100644
--- a/bin/automake.in
+++ b/bin/automake.in
@@ -3878,7 +3878,7 @@ sub substitute_ac_subst_variables_worker
sub substitute_ac_subst_variables
{
my ($text) = @_;
- $text =~ s/\${([^ \t=:+{}]+)}/substitute_ac_subst_variables_worker ($1)/ge;
+ $text =~ s/\$[{]([^ \t=:+{}]+)}/substitute_ac_subst_variables_worker ($1)/ge;
return $text;
}
So either wait for the next release or apply the change to your
/usr/bin/automake.
hth
Philipp