Commit 8be0edb9 authored by Alexandre Julliard's avatar Alexandre Julliard

ALTNAMES has been removed, use SPEC_SRCS16 instead.

parent 36c4fa47
...@@ -71,10 +71,14 @@ foreach my $i (split(/\s/,$makefiles)) ...@@ -71,10 +71,14 @@ foreach my $i (split(/\s/,$makefiles))
} }
next; next;
} }
if (/^ALTNAMES\s*=\s*(.*)/) if (/^SPEC_SRCS16\s*=\s*(.*)/)
{ {
my @list = split(/\s/,$1); my $specs = $1;
while ($specs =~ /\s*(.*)\\$/) { $specs = $1 . <MAKE>; }
my @list = split(/\s+/,$specs);
@list = map { $_ =~ s/\.spec$//; $_ .= ".dll" unless $_ =~ /\./; $_; } @list;
$altnames{$module} = \@list; $altnames{$module} = \@list;
printf "\"$specs\" -> %s\n", join(',',@list);
next; next;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment