From 4f28cd2d1854df8e6f56544fe509fb2e3ddce9aa 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(-) (limited to 'bitbake/lib/bb/fetch2') 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