From: Fabian Maurer dark.shadow4@web.de
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=41342 --- tools/winebuild/main.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tools/winebuild/main.c b/tools/winebuild/main.c index 63d65e7bcd0..354c9194959 100644 --- a/tools/winebuild/main.c +++ b/tools/winebuild/main.c @@ -111,7 +111,9 @@ static void init_dll_name( DLLSPEC *spec ) if (!spec->file_name && output_file_name) { char *p; - spec->file_name = xstrdup( output_file_name ); + char *copy = xstrdup( output_file_name ); + spec->file_name = xstrdup( basename(copy) ); + free( copy ); if ((p = strrchr( spec->file_name, '.' ))) *p = 0; } if (!spec->dll_name && spec->file_name) /* set default name from file name */
Hi,
It looks like your patch introduced the new failures shown below. Please investigate and fix them before resubmitting your patch. If they are not new, fixing them anyway would help a lot. Otherwise please ask for the known failures list to be updated.
The tests also ran into some preexisting test failures. If you know how to fix them that would be helpful. See the TestBot job for the details:
The full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=151236
Your paranoid android.
=== debian11b (64 bit WoW report) ===
kernel32: comm.c:1586: Test failed: Unexpected time 1001, expected around 500