From: Zac Medico Date: Sat, 23 Dec 2006 05:17:06 +0000 (-0000) Subject: Show the "Calculating dependencies .. done!" message with --resume since the spinner... X-Git-Tag: v2.1.2~236 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=cdd074eb0d2f6baf7add1054505b32c7a94f6d08;p=portage.git Show the "Calculating dependencies .. done!" message with --resume since the spinner now runs inside the depgraph constructor. Thanks to antarus for reporting. svn path=/main/trunk/; revision=5361 --- diff --git a/bin/emerge b/bin/emerge index 7e201b1c4..afa336cba 100755 --- a/bin/emerge +++ b/bin/emerge @@ -4374,8 +4374,12 @@ def action_build(settings, trees, mtimedb, myresumeopts[myopt] = myarg myopts=myresumeopts myparams = create_depgraph_params(myopts, myaction) + if not "--quiet" in myopts: + print "Calculating dependencies ", mydepgraph = depgraph(settings, trees, myopts, myparams, spinner) + if not "--quiet" in myopts: + print "\b\b... done!" else: if ("--resume" in myopts): print darkgreen("emerge: It seems we have nothing to resume...")