1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-07 16:59:22 +00:00

bitbake/fetch2/local: Fix inverted update required logic

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2011-03-09 11:01:35 -08:00
committed by Saul Wold
parent f432f1b010
commit 09d166ebfd
+1 -1
View File
@@ -66,7 +66,7 @@ class Local(FetchMethod):
return newpath
def need_update(self, url, ud, d):
if url.find("*") == -1:
if url.find("*") != -1:
return False
if os.path.exists(ud.localpath):
return False