diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-23 11:51:04 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-24 10:34:53 +0100 |
commit | 7cf87fc083386dc162f3573c782d77447e608a16 (patch) | |
tree | 6270583e6b3c82be9db4cb2c1cb92d0d6d1f3de4 | |
parent | 507d5cc2ccab6e1bff4731cfee663f615dc7ed57 (diff) | |
download | 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__.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): | |||
642 | rev = rev[:10] | 642 | rev = rev[:10] |
643 | if autoinc and not seenautoinc: | 643 | if autoinc and not seenautoinc: |
644 | rev = "AUTOINC+" + rev | 644 | rev = "AUTOINC+" + rev |
645 | seenautoinc | 645 | seenautoinc = True |
646 | format = format.replace(name, rev) | 646 | format = format.replace(name, rev) |
647 | 647 | ||
648 | return format | 648 | return format |