PATCH: make wine find winelib apps better

Martin Wilck Martin.Wilck at Fujitsu-Siemens.com
Tue Sep 17 13:50:46 CDT 2002


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 <Martin.Wilck at fujitsu-siemens.com>:
        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:Martin.Wilck at Fujitsu-Siemens.com
D-33106 Paderborn           http://www.fujitsu-siemens.com/primergy








More information about the wine-devel mailing list