diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-04-20 22:25:33 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-04-20 22:25:33 +0000 |
commit | 1f3334f9f3aad7591418d2daa8667da042edcc1b (patch) | |
tree | f73d891d73bb5ab0eac98546f887a5335a7dd415 | |
parent | c807fc36067598447e027add831af0ec1e3130a4 (diff) | |
download | portage-1f3334f9f3aad7591418d2daa8667da042edcc1b.tar.gz portage-1f3334f9f3aad7591418d2daa8667da042edcc1b.tar.bz2 portage-1f3334f9f3aad7591418d2daa8667da042edcc1b.zip |
Also validate SRC_URI inside doebuild().
svn path=/main/trunk/; revision=6425
-rw-r--r-- | pym/portage/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 8774a3d18..606326bd8 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -3529,7 +3529,7 @@ def doebuild(myebuild, mydo, myroot, mysettings, debug=0, listonly=0, set(["clean", "cleanrm", "help", "prerm", "postrm"]) mycpv = mysettings["CATEGORY"] + "/" + mysettings["PF"] dep_keys = ["DEPEND", "RDEPEND", "PDEPEND"] - misc_keys = ["LICENSE", "PROVIDE"] + misc_keys = ["LICENSE", "PROVIDE", "SRC_URI"] all_keys = dep_keys + misc_keys metadata = dict(izip(all_keys, mydbapi.aux_get(mycpv, all_keys))) class FakeTree(object): |