Module: wine Branch: master Commit: 70fbe9770a4775f9c6cf8769ff6a9b0c15891428 URL: http://source.winehq.org/git/wine.git/?a=commit;h=70fbe9770a4775f9c6cf8769ff...
Author: André Hentschel nerv@dawncrow.de Date: Fri Apr 24 17:40:32 2009 +0200
winemaker: Fix path handling for Current Working Directory.
---
tools/winemaker | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tools/winemaker b/tools/winemaker index eca6417..ba7d284 100755 --- a/tools/winemaker +++ b/tools/winemaker @@ -1724,7 +1724,7 @@ sub search_from($$) my $path=$_[1]; my $real_path="";
- if ($dirname eq "" or $dirname eq ".") { + if ($dirname eq "" or $dirname eq "." or $dirname eq "./") { $dirname=cwd; } elsif ($dirname !~ m+^/+) { $dirname=cwd . "/" . $dirname;