From af06e4a8efbcaff657c397c34f2cb893d2d7f7f7 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 10 Jan 2011 18:12:53 +0000 Subject: bitbake: Switch to fetch2 fetcher code based on the environment variable BBFETCH2 Signed-off-by: Richard Purdie --- bitbake/lib/bb/__init__.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bitbake') diff --git a/bitbake/lib/bb/__init__.py b/bitbake/lib/bb/__init__.py index 9c57c65f8d..bf2f0ddd92 100644 --- a/bitbake/lib/bb/__init__.py +++ b/bitbake/lib/bb/__init__.py @@ -78,6 +78,9 @@ if "BBDEBUG" in os.environ: if level: bb.msg.set_debug_level(level) +if os.environ.get("BBFETCH2"): + from bb import fetch2 as fetch + sys.modules['bb.fetch'] = sys.modules['bb.fetch2'] # Messaging convenience functions def plain(*args): -- cgit 1.2.3-korg