diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-08-02 06:02:03 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-08-02 06:02:03 +0000 |
commit | 33ebcb7bf95c7a67230a3d45e22227217746d5fd (patch) | |
tree | 6218167c36308c7b532c0730eee09dc8b907fcd1 | |
parent | 19d8f495f8ffe7101c0d9d14b60b712f228d2c6c (diff) | |
download | portage-33ebcb7bf95c7a67230a3d45e22227217746d5fd.tar.gz portage-33ebcb7bf95c7a67230a3d45e22227217746d5fd.tar.bz2 portage-33ebcb7bf95c7a67230a3d45e22227217746d5fd.zip |
Move code that updates depgraph state from select_dep() to a more appropriate location in create(). This fixes a bug in $ROOT handling, where the the $ROOT of the child is used where the $ROOT of the parent should have been (similar to bug #108449).
svn path=/main/trunk/; revision=4086
-rwxr-xr-x | bin/emerge | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/bin/emerge b/bin/emerge index 8b6d85fb1..66f1fa491 100755 --- a/bin/emerge +++ b/bin/emerge @@ -761,6 +761,13 @@ class depgraph: if addme and merging == 1: mybigkey.append("merge") + # Update old-style virtuals if this package provides any. These + # are needed for dep_virtual calls inside dep_check. + self.pkgsettings[myroot].setinst(mykey, + self.trees[myroot][self.pkg_tree_map[mytype]].dbapi) + # Update our fakedbapi state that is used for dep_wordreduce calls + # inside dep_check. + self.mydbapi[myroot].cpv_inject(mykey) else: mybigkey.append("nomerge") @@ -1016,17 +1023,6 @@ class depgraph: #we're processing a command-line argument; unconditionally merge it even if it's already merged mymerge=[depstring] - # dep_check has been run so we can now add our parent to our - # build state to update virtuals and other settings. This - # happens after the package is added to the tree so that a - # package can depend on a virtual which it satisfies. - if myparent: - myp = myparent.split() - if myp[3]=="merge": - self.mydbapi[myroot].cpv_inject(myp[2]) - pkgsettings.setinst(myp[2], - self.trees[myroot][self.pkg_tree_map[myp[0]]].dbapi) - if not mymerge: return 1 |