diff options
author | Jason Stubbs <jstubbs@gentoo.org> | 2005-10-02 14:30:49 +0000 |
---|---|---|
committer | Jason Stubbs <jstubbs@gentoo.org> | 2005-10-02 14:30:49 +0000 |
commit | b94c99696e8f8318e5265bf46dd84c34a4d513e4 (patch) | |
tree | 7fa5cff21775d07d74524975dd8c08e2e19a648d | |
parent | 298a2779d9ef03d4974d439beb0535ab4b79771f (diff) | |
download | portage-b94c99696e8f8318e5265bf46dd84c34a4d513e4.tar.gz portage-b94c99696e8f8318e5265bf46dd84c34a4d513e4.tar.bz2 portage-b94c99696e8f8318e5265bf46dd84c34a4d513e4.zip |
Pass use list rather than config obj to portdbapi.fetch_check()
svn path=/main/branches/2.0/; revision=2074
-rwxr-xr-x | bin/emerge | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/emerge b/bin/emerge index daa6c8351..867799117 100755 --- a/bin/emerge +++ b/bin/emerge @@ -1489,7 +1489,7 @@ class depgraph: else: if (x[0]!="binary") and ("fetch" in string.split(portage.portdb.aux_get(x[2],["RESTRICT"])[0])): fetch = red("F") - if portage.portdb.fetch_check(x[2], portage.settings): + if portage.portdb.fetch_check(x[2], portage.settings["USE"]): fetch = green("f") #we need to use "--emptrytree" testing here rather than "empty" param testing because "empty" |