Commit a4de41f3 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

msi: Install assemblies only if the component action request is set to INSTALLSTATE_LOCAL.

parent eaf4307c
......@@ -293,7 +293,8 @@ UINT ACTION_InstallFiles(MSIPACKAGE *package)
}
LIST_FOR_EACH_ENTRY( comp, &package->components, MSICOMPONENT, entry )
{
if (comp->Enabled && comp->assembly && !comp->assembly->installed)
if (comp->ActionRequest == INSTALLSTATE_LOCAL && comp->Enabled &&
comp->assembly && !comp->assembly->installed)
{
rc = install_assembly( package, comp );
if (rc != ERROR_SUCCESS)
......
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