Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Chris Larson
2010-06-20 12:07:34 -07:00
committed by Richard Purdie
parent ef1de9ecaf
commit ecbd5ca720
6 changed files with 31 additions and 22 deletions

View File

@@ -25,12 +25,14 @@
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
from __future__ import absolute_import
import re, bb, os
import bb.fetch, bb.build, bb.utils
from bb import data
from ConfHandler import include, init
from bb.parse import resolve_file, ast
from . import ConfHandler
from .. import resolve_file, ast
from .ConfHandler import include, init
# For compatibility
bb.deprecate_import(__name__, "bb.parse", ["vars_from_file"])
@@ -231,10 +233,9 @@ def feeder(lineno, s, fn, root, statements):
ast.handleInherit(statements, m)
return
from bb.parse import ConfHandler
return ConfHandler.feeder(lineno, s, fn, statements)
# Add us to the handlers list
from bb.parse import handlers
from .. import handlers
handlers.append({'supports': supports, 'handle': handle, 'init': init})
del handlers

View File

@@ -25,7 +25,9 @@ File parsers for the BitBake build tools.
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Based on functions from the base bb module, Copyright 2003 Holger Schurig
__version__ = '1.0'
import ConfHandler
import BBHandler
from __future__ import absolute_import
from . import ConfHandler
from . import BBHandler
__version__ = '1.0'