From: Zac Medico Date: Sun, 4 Jun 2006 03:42:40 +0000 (-0000) Subject: Raise a ParseError if the profile has a parent file containing a nonexistant parent. X-Git-Tag: v2.1~21 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e99df8c3192237de411757b8bc32a3fc0a117048;p=portage.git Raise a ParseError if the profile has a parent file containing a nonexistant parent. svn path=/main/trunk/; revision=3455 --- diff --git a/pym/portage.py b/pym/portage.py index da3394b09..deaad848f 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -1035,6 +1035,9 @@ class config: mypath, parents[0])) if os.path.exists(mypath): self.profiles.insert(0, mypath) + else: + raise portage_exception.ParseError( + "Specified parent not found: '%s'" % parents_file) if os.environ.has_key("PORTAGE_CALLER") and os.environ["PORTAGE_CALLER"] == "repoman": pass