'//' in a FILES variable causes hard to track down issues with
packaging. This adds a warning and attempts to auto-correct the issue to
try and make the problem more user friendly.
[YOCTO #2448]
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
files = filesvar.split()
file_links = {}
for file in files:
+ if file.find("//") != -1:
+ bb.warn("FILES variable for package %s contains '//' which is invalid. Attempting to fix this but you should correct the metadata.\n" % pkg)
+ file.replace("//", "/")
if os.path.isabs(file):
file = '.' + file
if not os.path.islink(file):