summaryrefslogtreecommitdiffstats
path: root/src/libs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs')
-rw-r--r--src/libs/installer/installercalculator.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/libs/installer/installercalculator.cpp b/src/libs/installer/installercalculator.cpp
index 7528d7bd1..2ef5d3b74 100644
--- a/src/libs/installer/installercalculator.cpp
+++ b/src/libs/installer/installercalculator.cpp
@@ -239,12 +239,9 @@ bool InstallerCalculator::appendComponentToInstall(Component *component, const Q
else
m_referenceCount.insert(dependencyComponentName, value);
}
- if (!m_referenceCount.contains(dependencyComponentName)) {
- insertInstallReason(dependencyComponent, InstallerCalculator::Dependent,
- component->name(), true);
- if (!appendComponentToInstall(dependencyComponent, requiredDependencyVersion, revertFromInstall))
- return false;
- }
+ insertInstallReason(dependencyComponent, InstallerCalculator::Dependent, component->name(), true);
+ if (!appendComponentToInstall(dependencyComponent, requiredDependencyVersion, revertFromInstall))
+ return false;
m_visitedComponents.remove(component);
}