Fix FS#12272 - genlang changes broke some targets
New genlang code forgot to allow for the wildcard being the full target name with a * appended. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30514 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
f93530c4ba
commit
8a0db7bf34
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ if(!$target && !$update && !$sortfile) {
|
|||
# state machine, so we don't bother to check.
|
||||
my $target_regex = "(?:^|,) *(?:\\*";
|
||||
foreach my $target_part (split ':', $target) {
|
||||
for (my $c=1; $c<length $target_part; $c++) {
|
||||
for (my $c=1; $c<=length $target_part; $c++) {
|
||||
my $partial = substr $target_part, 0, $c;
|
||||
$target_regex .= "|$partial\\*";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue