From: Zac Medico Date: Thu, 1 Feb 2007 07:30:25 +0000 (-0000) Subject: Fix --newuse so that it works correctly with --usepkg. (trunk r5859) X-Git-Tag: v2.1.2-r6~3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=81b28730a42c04109903c563ad33bbf2411cc8fe;p=portage.git Fix --newuse so that it works correctly with --usepkg. (trunk r5859) svn path=/main/branches/2.1.2/; revision=5860 --- diff --git a/bin/emerge b/bin/emerge index 620fda434..8688cbfb0 100755 --- a/bin/emerge +++ b/bin/emerge @@ -1129,9 +1129,8 @@ class depgraph: If the package has new iuse flags or different use flags then if --newuse is specified, we need to merge the package. """ if merging==0 and "--newuse" in self.myopts and \ - mytype == "ebuild" and \ vardbapi.cpv_exists(mykey): - pkgsettings.setcpv(mykey, mydb=portdb) + pkgsettings.setcpv(mykey, mydb=mydbapi) forced_flags = set() forced_flags.update(pkgsettings.useforce) forced_flags.update(pkgsettings.usemask)