diff options
author | Jason Stubbs <jstubbs@gentoo.org> | 2005-10-02 14:50:04 +0000 |
---|---|---|
committer | Jason Stubbs <jstubbs@gentoo.org> | 2005-10-02 14:50:04 +0000 |
commit | 84325f06b83c7b2a54e071aed35919e02ed8ca1c (patch) | |
tree | 91ba5b676cc7beb7f11625965134d9120d4b7aa1 | |
parent | ec80b6632e3b30208e6967f12ed35ab28ebf7040 (diff) | |
download | portage-84325f06b83c7b2a54e071aed35919e02ed8ca1c.tar.gz portage-84325f06b83c7b2a54e071aed35919e02ed8ca1c.tar.bz2 portage-84325f06b83c7b2a54e071aed35919e02ed8ca1c.zip |
Make sure to include package.use flags with fetch-restricted packages
svn path=/main/branches/2.0/; revision=2076
-rwxr-xr-x | bin/emerge | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/emerge b/bin/emerge index 867799117..b70c5312a 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["USE"]): + if portage.portdb.fetch_check(x[2], self.applied_useflags[x[2]]): fetch = green("f") #we need to use "--emptrytree" testing here rather than "empty" param testing because "empty" |