Make all target names lower case.

This commit is contained in:
Martin Wilck 2002-09-18 18:30:29 +00:00 committed by Alexandre Julliard
parent d95ce8ce5d
commit 4ae4d66159

View file

@ -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=[];