From: Zac Medico Date: Tue, 18 Sep 2007 06:01:47 +0000 (-0000) Subject: Bug #190781 - Don't include --oneshot in the options that --update implies. X-Git-Tag: v2.2_pre1~795 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5edab61aedce735f1bdf3fb52330a925fa50a93c;p=portage.git Bug #190781 - Don't include --oneshot in the options that --update implies. svn path=/main/trunk/; revision=7790 --- diff --git a/pym/emerge/__init__.py b/pym/emerge/__init__.py index b09e20537..6dd5371e3 100644 --- a/pym/emerge/__init__.py +++ b/pym/emerge/__init__.py @@ -1565,8 +1565,7 @@ class depgraph(object): arg_atoms = greedy_atoms oneshot = "--oneshot" in self.myopts or \ - "--onlydeps" in self.myopts or \ - "--update" in self.myopts + "--onlydeps" in self.myopts """ These are used inside self.create() in order to ensure packages that happen to match arguments are not incorrectly marked as nomerge.""" args_set = self._sets["args"]