From: Zac Medico Date: Tue, 3 Feb 2009 21:46:23 +0000 (-0000) Subject: For optional deps pulled in by --with-bdeps=y, set DepPriority.buildtime to X-Git-Tag: v2.2_rc24~225 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=24d05c023584a04c846f1def93132d95382f308c;p=portage.git For optional deps pulled in by --with-bdeps=y, set DepPriority.buildtime to False. svn path=/main/trunk/; revision=12577 --- diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index 451827a9b..1cf02e6bc 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -5095,7 +5095,8 @@ class depgraph(object): deps = ( ("/", edepend["DEPEND"], - self._priority(buildtime=True, optional=bdeps_optional)), + self._priority(buildtime=(not bdeps_optional), + optional=bdeps_optional)), (myroot, edepend["RDEPEND"], self._priority(runtime=True)), (myroot, edepend["PDEPEND"], self._priority(runtime_post=True)) )