summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cache.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2020-08-25 14:49:12 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-08-26 09:05:38 +0100
commit1560a4b0cbb8b7ad12623635c64ce43d962e8dce (patch)
tree1e78e359a8f93bd7fe4e3e534ea1f7fabbaaa692 /bitbake/lib/bb/cache.py
parent3cfc4e9fa92ac594a137a4b6b29ae6ca980b26d6 (diff)
downloadpoky-1560a4b0cbb8b7ad12623635c64ce43d962e8dce.tar.gz
bitbake: fetch2: Drop globbing supprt in file:// SRC_URIs
Globbing in file:// urls is terminally broken. Currently when its used, the file checksum code is basically bypassed. This means changes to the source files don't change the task checksum, the task doesn't rebuild when the inputs change and things generally break. To make globbing work generically, we'd have to scan the file system for all possible matches to the glob and log whether they exist or not. We can't simply log the files which exist, we have to also know which files could later exist and influence the choice of file so we know when to reparse. For a simple file://xxx/*, this could be done but for bigger patterns, it becomes much more problemtic. We already support file://xxx/ in urls. So, lets decide we'll not support globs in file://urls. Worse case users can put files in a directory and reference that, moving files into place if needed. Remove all the glob special cases (see the comments if anyone doesn't believe this is terminally broken) and error to the user if they have such urls. (Bitbake rev: 0c9302d950c6f37bfcc4256b41001d63f668bdf7) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/cache.py')
-rw-r--r--bitbake/lib/bb/cache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py
index b819a0c2da..9e0c931a07 100644
--- a/bitbake/lib/bb/cache.py
+++ b/bitbake/lib/bb/cache.py
@@ -636,7 +636,7 @@ class Cache(NoCache):
636 # Have to be careful about spaces and colons in filenames 636 # Have to be careful about spaces and colons in filenames
637 flist = self.filelist_regex.split(fl) 637 flist = self.filelist_regex.split(fl)
638 for f in flist: 638 for f in flist:
639 if not f or "*" in f: 639 if not f:
640 continue 640 continue
641 f, exist = f.split(":") 641 f, exist = f.split(":")
642 if (exist == "True" and not os.path.exists(f)) or (exist == "False" and os.path.exists(f)): 642 if (exist == "True" and not os.path.exists(f)) or (exist == "False" and os.path.exists(f)):