diff options
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | gendistrib | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,6 @@ - do not load file sizes from synthesis in non incremental mode (minor performance optimisation) +- fix "Unescaped left brace in regex is illegal here in regex" Version 7.00 - 7 September 2014, by Thierry Vignaud @@ -123,7 +123,7 @@ foreach my $d ($infodir, map { "$_->{path}/media_info" } @hdlists) { } foreach my $e (@hdlists) { - if ($e->{dir} =~ /%{ARCH}/) { + if ($e->{dir} =~ /%\{ARCH\}/) { die "sorry, %{ARCH} not supported anymore\n"; } @{$e->{files}} = glob("$root/$e->{dir}/*.rpm") or do { |