From: Richard Purdie Date: Mon, 10 Jan 2011 18:13:53 +0000 (+0000) Subject: bitbake: For poky only, force the use of fetch2 codebase X-Git-Tag: 2011-1~2942 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=c02f89fe245db7a45f961755b03ef176b56c251f;p=openembedded-core.git bitbake: For poky only, force the use of fetch2 codebase Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/__init__.py b/bitbake/lib/bb/__init__.py index bf2f0ddd92..e1ddbd53ff 100644 --- a/bitbake/lib/bb/__init__.py +++ b/bitbake/lib/bb/__init__.py @@ -78,7 +78,7 @@ if "BBDEBUG" in os.environ: if level: bb.msg.set_debug_level(level) -if os.environ.get("BBFETCH2"): +if True or os.environ.get("BBFETCH2"): from bb import fetch2 as fetch sys.modules['bb.fetch'] = sys.modules['bb.fetch2']