summaryrefslogtreecommitdiffstats
path: root/pym/portage/__init__.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-10-21 21:45:57 +0000
committerZac Medico <zmedico@gentoo.org>2008-10-21 21:45:57 +0000
commit9874b7bf2454643a9a288d6d6fc36ef543004fc3 (patch)
treed01ce60ebfa258b72b523b986814e45e7c5e4413 /pym/portage/__init__.py
parent611f7a98de8a172f3a75ec85cdc8d324f6d665e0 (diff)
downloadportage-9874b7bf2454643a9a288d6d6fc36ef543004fc3.tar.gz
portage-9874b7bf2454643a9a288d6d6fc36ef543004fc3.tar.bz2
portage-9874b7bf2454643a9a288d6d6fc36ef543004fc3.zip
Validate PROPERTIES inside doebuild().
svn path=/main/trunk/; revision=11713
Diffstat (limited to 'pym/portage/__init__.py')
-rw-r--r--pym/portage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index 162ff7e0f..ffa542a51 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -5384,7 +5384,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", "RESTRICT", "SRC_URI"]
+ misc_keys = ["LICENSE", "PROPERTIES", "PROVIDE", "RESTRICT", "SRC_URI"]
other_keys = ["SLOT"]
all_keys = dep_keys + misc_keys + other_keys
metadata = dict(izip(all_keys, mydbapi.aux_get(mycpv, all_keys)))