Am Die, 2002-09-17 um 20.26 schrieb Alexandre Julliard:

> And yes, I think winemaker should make the .exe.so's lower
> case (and the dlls too BTW, they will have the same problem).

Well - I thought that'd be horribly complex. It seems that it isn't, see
patch below. 

Patch: winemaker-case.diff

Modified files:
        tools:  winemaker

Log Message: 
        Martin Wilck <[EMAIL PROTECTED]>:
        Make all target names lower case.


Index: tools/winemaker
===================================================================
RCS file: /home/wine/wine/tools/winemaker,v
retrieving revision 1.51
diff -u -r1.51 winemaker
--- tools/winemaker     13 Sep 2002 17:55:54 -0000      1.51
+++ tools/winemaker     17 Sep 2002 18:41:58 -0000
@@ -784,7 +784,7 @@
   my @local_dlls=();
   my @local_depends=();
   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...
     my $basename;
     my $target=[];

-- 
Martin Wilck                Phone: +49 5251 8 15113
Fujitsu Siemens Computers   Fax:   +49 5251 8 20409
Heinz-Nixdorf-Ring 1        mailto:[EMAIL PROTECTED]
D-33106 Paderborn           http://www.fujitsu-siemens.com/primergy






Reply via email to