From 09d166ebfd4b0f3e50b5410833fac059614ad6bb Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 9 Mar 2011 11:01:35 -0800 Subject: bitbake/fetch2/local: Fix inverted update required logic Signed-off-by: Richard Purdie --- bitbake/lib/bb/fetch2/local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): 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 -- cgit v1.2.3-54-g00ecf