Module: wine Branch: master Commit: 97daaba1af0f433d84f37539af47cb98e57fc6e0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=97daaba1af0f433d84f37539af...
Author: André Hentschel nerv@dawncrow.de Date: Tue Sep 9 00:04:31 2014 +0200
msvcmaker: Allow hyphens in dll names.
---
tools/winapi/msvcmaker | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/winapi/msvcmaker b/tools/winapi/msvcmaker index 0c82420..d0d0b63 100755 --- a/tools/winapi/msvcmaker +++ b/tools/winapi/msvcmaker @@ -178,7 +178,7 @@ MAKEFILE_IN: foreach my $makefile_in_file (@makefile_in_files) { next; }
- if(/^MODULE\s*=\s*([\w.]+)$/) { + if(/^MODULE\s*=\s*([\w.-]+)$/) { $module = $1; } elsif (/^@MAKE_IMPLIB_RULES@/) { $type = "lib";