Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(66)

Unified Diff: pym/_emerge/create_depgraph_params.py

Issue 6905107: Rebuild when build-time/run-time deps are upgraded. (Closed) Base URL: git://git.overlays.gentoo.org/proj/portage.git@master
Patch Set: Address review feedback, add tests. Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pym/_emerge/UnmergeDepPriority.py ('k') | pym/_emerge/depgraph.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pym/_emerge/create_depgraph_params.py
diff --git a/pym/_emerge/create_depgraph_params.py b/pym/_emerge/create_depgraph_params.py
index d60259ef251491aa2d0deabd8bf650de1ea50aa4..09863479afa06f397dcf03cefa5aebb30fa503db 100644
--- a/pym/_emerge/create_depgraph_params.py
+++ b/pym/_emerge/create_depgraph_params.py
@@ -33,7 +33,7 @@ def create_depgraph_params(myopts, myaction):
deep = myopts.get("--deep")
if deep is not None and deep != 0:
myparams["deep"] = deep
- if "--complete-graph" in myopts:
+ if "--complete-graph" in myopts or "--rebuild" in myopts:
myparams["complete"] = True
if "--emptytree" in myopts:
myparams["empty"] = True
« no previous file with comments | « pym/_emerge/UnmergeDepPriority.py ('k') | pym/_emerge/depgraph.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698