mshtml: Try installing Gecko from hardcoded '/usr/share/wine/gecko/' location.

This commit is contained in:
Jacek Caban 2010-10-01 15:30:19 +02:00 committed by Alexandre Julliard
parent f08938c381
commit 1f716bcbf4
1 changed files with 4 additions and 1 deletions

View File

@ -283,7 +283,10 @@ static BOOL install_from_default_dir(void)
ret = install_from_unix_file(file_name);
heap_free(file_name);
return ret;
if(ret)
return TRUE;
return install_from_unix_file("/usr/share/wine/gecko/" GECKO_FILE_NAME);
}
static HRESULT WINAPI InstallCallback_QueryInterface(IBindStatusCallback *iface,