]> code.ossystems Code Review - openembedded-core.git/commitdiff
bitbake: For poky only, force the use of fetch2 codebase
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 10 Jan 2011 18:13:53 +0000 (18:13 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 10 Jan 2011 18:13:53 +0000 (18:13 +0000)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
bitbake/lib/bb/__init__.py

index bf2f0ddd92fd0681a1d731a843b9f1a5e7f32b64..e1ddbd53ffe0bc4df49b36d3c8e26a41ea6f634f 100644 (file)
@@ -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']