From: Zac Medico Date: Sun, 23 Oct 2011 18:51:43 +0000 (-0700) Subject: Skip global updates prior to sync (called after). X-Git-Tag: v2.2.0_alpha71~4 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=cb4cd5025405b28f76b3487f5eec82590e2cabdb;p=portage.git Skip global updates prior to sync (called after). --- diff --git a/pym/_emerge/main.py b/pym/_emerge/main.py index 26f37667a..b170ea32f 100644 --- a/pym/_emerge/main.py +++ b/pym/_emerge/main.py @@ -1611,7 +1611,8 @@ def emerge_main(args=None): tmpcmdline.extend(args) myaction, myopts, myfiles = parse_opts(tmpcmdline) - if myaction not in ('help', 'info', 'version') and \ + # skip global updates prior to sync, since it's called after sync + if myaction not in ('help', 'info', 'sync', 'version') and \ myopts.get('--package-moves') != 'n' and \ _global_updates(trees, mtimedb["updates"], quiet=("--quiet" in myopts)): mtimedb.commit()