From 7cf87fc083386dc162f3573c782d77447e608a16 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 23 May 2013 11:51:04 +0100 Subject: [PATCH] bitbake: fetch2: Fix missing assignment The assignment to True was missing from the code, well spotted Saul! (Bitbake rev: e493fe8cb4953935f01361ffc0240e5818ebb283) Signed-off-by: Richard Purdie --- bitbake/lib/bb/fetch2/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index 376ac9b1e1..52c53eb96b 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py @@ -642,7 +642,7 @@ def get_srcrev(d): rev = rev[:10] if autoinc and not seenautoinc: rev = "AUTOINC+" + rev - seenautoinc + seenautoinc = True format = format.replace(name, rev) return format