diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2021-11-18 15:39:27 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2021-11-18 15:39:27 +0100 |
commit | 85fa0aea48bff9340dffda6d136035f283863237 (patch) | |
tree | 950db998aeab36f3368d3e9070e6d1db0cc4a389 /pm/MGATools | |
parent | 5f6e54c2a40a39611c26850b1b61447d2198258a (diff) | |
download | mgatools-master.tar mgatools-master.tar.gz mgatools-master.tar.bz2 mgatools-master.tar.xz mgatools-master.zip |
Diffstat (limited to 'pm/MGATools')
-rw-r--r-- | pm/MGATools/rpmsrate.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pm/MGATools/rpmsrate.pm b/pm/MGATools/rpmsrate.pm index a4611e9..195122f 100644 --- a/pm/MGATools/rpmsrate.pm +++ b/pm/MGATools/rpmsrate.pm @@ -94,7 +94,7 @@ sub check_if_expandable { # some i18n packages does not require the same locale, e.g. kde-i18n-nb and nn requires locales-no # if (grep { s/locales-// && $loc =~ /^$_(_|$)/ } @{$header{REQUIRENAME}}) { - if (any { /^locales-../ } $pkg->requires) { + if (any { /^locales-[a-zA-Z_]*/ } $pkg->requires) { push @{$locale->{$pg}}, $loc; $localized_pkg->{"$pg-$loc"} = 1; } |