From: Elizabeth Figura <zfigura@codeweavers.com> This reverts commit 06718e98474937d869c8c9ffb12458db372c5067. As described in the merge request from which this commit originates [1], this is meant to avoid a conflict with an unrelated DLL with the same name. a31ec8da9572672e04ae46792a398da942649875 is a better fix for this problem, and the heuristic works here as the relevant DLL has no version resource. [1] https://gitlab.winehq.org/wine/wine/-/merge_requests/6391#note_80343 --- dlls/dxcore/Makefile.in | 2 -- 1 file changed, 2 deletions(-) diff --git a/dlls/dxcore/Makefile.in b/dlls/dxcore/Makefile.in index 147216555e9..7c7e60f0969 100644 --- a/dlls/dxcore/Makefile.in +++ b/dlls/dxcore/Makefile.in @@ -1,7 +1,5 @@ MODULE = dxcore.dll IMPORTS = wined3d -EXTRADLLFLAGS = -Wb,--prefer-native - SOURCES = \ dxcore.c -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10955