From: Zac Medico Date: Wed, 8 Jul 2009 20:05:14 +0000 (-0000) Subject: Fix --selective so it works. X-Git-Tag: v2.2_rc34~60 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=723dc66545ad29fd7b75260788009ca9a7610ab6;p=portage.git Fix --selective so it works. svn path=/main/trunk/; revision=13806 --- diff --git a/pym/_emerge/create_depgraph_params.py b/pym/_emerge/create_depgraph_params.py index 5baad8004..78c79fe2d 100644 --- a/pym/_emerge/create_depgraph_params.py +++ b/pym/_emerge/create_depgraph_params.py @@ -22,7 +22,8 @@ def create_depgraph_params(myopts, myaction): if "--update" in myopts or \ "--newuse" in myopts or \ "--reinstall" in myopts or \ - "--noreplace" in myopts: + "--noreplace" in myopts or \ + "--selective" in myopts: myparams.add("selective") if "--emptytree" in myopts: myparams.add("empty")