Module: wine Branch: master Commit: 868547c93294ca23971cd2c78aec0daabcb06376 URL: http://source.winehq.org/git/wine.git/?a=commit;h=868547c93294ca23971cd2c78a...
Author: André Hentschel nerv@dawncrow.de Date: Tue Apr 21 20:32:41 2009 +0200
winemaker: Fix wrong place for case-check.
---
tools/winemaker | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/tools/winemaker b/tools/winemaker index 1d8ae92..7795237 100755 --- a/tools/winemaker +++ b/tools/winemaker @@ -854,9 +854,6 @@ sub source_scan_project_file($$$) for my $vc_filter (@{$vc_files->{'Filter'}}) { for my $vc_file (@{$vc_filter->{'File'}}) { $sfilet=$vc_file->{'RelativePath'}; - if (($opt_lower == $OPT_LOWER_ALL and $sfilet =~ /[A-Z]/) or ($opt_lower == $OPT_LOWER_UPPERCASE and $sfilet !~ /[a-z]/)) { - $sfilet=lc $sfilet; #to lowercase if necessary - } $sfilet=~s/\\/\/g; #remove double backslash $sfilet=~s/^.\//; #remove starting 'this directory' $sfilet=~s/\///g; #make slashes out of backslashes