Commit 0576d0a4 authored by Jack Jansen's avatar Jack Jansen

Force option should be applied to a single package, not recursively

to its dependencies. Fixes #733819.
parent 4eec95ad
......@@ -921,7 +921,7 @@ class PimpInstaller:
prereqs = package.prerequisites()
for pkg, descr in prereqs:
if pkg:
self._prepareInstall(pkg, force, recursive)
self._prepareInstall(pkg, False, recursive)
else:
self._curmessages.append("Problem with dependency: %s" % descr)
......
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