From: Daniel Robbins Date: Thu, 6 Nov 2003 02:45:35 +0000 (+0000) Subject: lilfix X-Git-Tag: CATALYST_1_0_1~188 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d3a18316042a871b573f2a9ea9129158df040041;p=catalyst.git lilfix git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@52 d1e1f19c-881f-0410-ab34-b69fee027534 --- diff --git a/modules/targets.py b/modules/targets.py index 5e2f0601..79870c12 100644 --- a/modules/targets.py +++ b/modules/targets.py @@ -37,7 +37,10 @@ class generic_stage_target(generic_target): self.archmap={} self.subarchmap={} for x in targetmap[self.settings["hostarch"]]: - fh=open("arch/"+x+".py") + try: + fh=open(self.settings["sharedir"]+"/arch/"+x+".py") + except IOError: + raise CatalystError, "Can't find "+x+".py plugin in "+self.settings["sharedir"]+"/arch/" #this next line loads the plugin as a module and assigns it to archmap[x] self.archmap[x]=imp.load_module(x,fh,"arch/"+x+".py",(".py","r",imp.PY_SOURCE)) #this next line registers all the subarches supported in the plugin