Commit 4ae4d661 authored by Martin Wilck's avatar Martin Wilck Committed by Alexandre Julliard

Make all target names lower case.

parent d95ce8ce
...@@ -784,7 +784,7 @@ sub source_scan_directory($$$$) ...@@ -784,7 +784,7 @@ sub source_scan_directory($$$$)
my @local_dlls=(); my @local_dlls=();
my @local_depends=(); my @local_depends=();
my @exe_list=(); my @exe_list=();
foreach my $target_name (sort { $b cmp $a } keys %targets) { foreach my $target_name (map (lc, (sort { $b cmp $a } keys %targets))) {
# Create the target... # Create the target...
my $basename; my $basename;
my $target=[]; my $target=[];
......
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