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

winegcc: Support distros using plain lib for 32-bit libraries in get_lib_dir.

parent 27338bc4
......@@ -507,6 +507,9 @@ static char *get_lib_dir( struct options *opts )
{
memcpy( p + 4, bit_suffix, 2 );
if (check_platform( opts, buffer )) goto found;
memmove( p + 4, p + 6, strlen( p + 6 ) + 1 );
if (check_platform( opts, buffer )) goto found;
memmove( p + 6, p + 4, strlen( p + 4 ) + 1 );
memcpy( p + 4, other_bit_suffix, 2 );
}
}
......
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