diff options
Diffstat (limited to 'bitbake/lib/bb/fetch2')
-rw-r--r-- | bitbake/lib/bb/fetch2/local.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/local.py b/bitbake/lib/bb/fetch2/local.py index ed9a047d8d..2bf92c96a5 100644 --- a/bitbake/lib/bb/fetch2/local.py +++ b/bitbake/lib/bb/fetch2/local.py | |||
@@ -66,7 +66,7 @@ class Local(FetchMethod): | |||
66 | return newpath | 66 | return newpath |
67 | 67 | ||
68 | def need_update(self, url, ud, d): | 68 | def need_update(self, url, ud, d): |
69 | if url.find("*") == -1: | 69 | if url.find("*") != -1: |
70 | return False | 70 | return False |
71 | if os.path.exists(ud.localpath): | 71 | if os.path.exists(ud.localpath): |
72 | return False | 72 | return False |