diff options
-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 464e66b98a..ea72025c22 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py | |||
@@ -625,7 +625,7 @@ def verify_donestamp(ud, d, origud=None): | |||
625 | Returns True, if the donestamp exists and is valid, False otherwise. When | 625 | Returns True, if the donestamp exists and is valid, False otherwise. When |
626 | returning False, any existing done stamps are removed. | 626 | returning False, any existing done stamps are removed. |
627 | """ | 627 | """ |
628 | if not ud.needdonestamp: | 628 | if not ud.needdonestamp or (origud and not origud.needdonestamp): |
629 | return True | 629 | return True |
630 | 630 | ||
631 | if not os.path.exists(ud.donestamp): | 631 | if not os.path.exists(ud.donestamp): |