summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-23 11:51:04 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-24 10:34:53 +0100
commit7cf87fc083386dc162f3573c782d77447e608a16 (patch)
tree6270583e6b3c82be9db4cb2c1cb92d0d6d1f3de4
parent507d5cc2ccab6e1bff4731cfee663f615dc7ed57 (diff)
downloadast2050-yocto-poky-7cf87fc083386dc162f3573c782d77447e608a16.zip
ast2050-yocto-poky-7cf87fc083386dc162f3573c782d77447e608a16.tar.gz
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 <richard.purdie@linuxfoundation.org>
-rw-r--r--bitbake/lib/bb/fetch2/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py
index 376ac9b..52c53eb 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
OpenPOWER on IntegriCloud