summaryrefslogtreecommitdiffstats
path: root/Lib/plat-mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2004-03-13 23:03:38 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2004-03-13 23:03:38 (GMT)
commit0576d0a48a5111fef529732830db2e60102406f7 (patch)
tree9c27ee236343ce07c9b4ed827d45d68b05c4b7a5 /Lib/plat-mac
parent4eec95ad2a44ab95d526304addde99231b86f919 (diff)
downloadcpython-0576d0a48a5111fef529732830db2e60102406f7.zip
cpython-0576d0a48a5111fef529732830db2e60102406f7.tar.gz
cpython-0576d0a48a5111fef529732830db2e60102406f7.tar.bz2
Force option should be applied to a single package, not recursively
to its dependencies. Fixes #733819.
Diffstat (limited to 'Lib/plat-mac')
-rw-r--r--Lib/plat-mac/pimp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/plat-mac/pimp.py b/Lib/plat-mac/pimp.py
index bff5f6c..9188612 100644
--- a/Lib/plat-mac/pimp.py
+++ b/Lib/plat-mac/pimp.py
@@ -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)