Commit d4736114 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

winebuild: Also try llvm variants of tools in find_tool.

parent b648c928
......@@ -375,7 +375,8 @@ struct strarray find_tool( const char *name, const char * const *names )
while (*names)
{
if ((file = find_binary( target_alias, *names )))
if ((file = find_binary( target_alias, *names ))
|| (names == alt_names && (file = find_binary( "llvm", *names ))))
{
struct strarray ret = empty_strarray;
strarray_add_one( &ret, file );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment