diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-04-05 09:37:59 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-04-05 23:20:03 +0100 |
commit | 23340365022cae4b2f18a47cd6105a3d7043e760 (patch) | |
tree | 34445198b735a01106700375ea5fd9f8d4365a2a /bitbake/lib/bb | |
parent | 2d704e445c220be1793570bfeaa95619676f1f19 (diff) | |
download | poky-23340365022cae4b2f18a47cd6105a3d7043e760.tar.gz |
bitbake: fetch/local: Drop FILESDIR
This has long since been deprecated and is no longer used anywhere, FILESPATH
is the commonly used varaible which offers much more flexibility. Remove
the FILESDIR code and references from bitbake.
(Bitbake rev: 751c9dc51fd01fa64a1ff37ba2638110335f71af)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/fetch2/local.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/bitbake/lib/bb/fetch2/local.py b/bitbake/lib/bb/fetch2/local.py index 2ff77234e5..a114ac12e5 100644 --- a/bitbake/lib/bb/fetch2/local.py +++ b/bitbake/lib/bb/fetch2/local.py | |||
@@ -67,12 +67,6 @@ class Local(FetchMethod): | |||
67 | logger.debug(2, "Searching for %s in paths:\n %s" % (path, "\n ".join(filespath.split(":")))) | 67 | logger.debug(2, "Searching for %s in paths:\n %s" % (path, "\n ".join(filespath.split(":")))) |
68 | newpath, hist = bb.utils.which(filespath, path, history=True) | 68 | newpath, hist = bb.utils.which(filespath, path, history=True) |
69 | searched.extend(hist) | 69 | searched.extend(hist) |
70 | if not newpath: | ||
71 | filesdir = d.getVar('FILESDIR') | ||
72 | if filesdir: | ||
73 | logger.debug(2, "Searching for %s in path: %s" % (path, filesdir)) | ||
74 | newpath = os.path.join(filesdir, path) | ||
75 | searched.append(newpath) | ||
76 | if (not newpath or not os.path.exists(newpath)) and path.find("*") != -1: | 70 | if (not newpath or not os.path.exists(newpath)) and path.find("*") != -1: |
77 | # For expressions using '*', best we can do is take the first directory in FILESPATH that exists | 71 | # For expressions using '*', best we can do is take the first directory in FILESPATH that exists |
78 | newpath, hist = bb.utils.which(filespath, ".", history=True) | 72 | newpath, hist = bb.utils.which(filespath, ".", history=True) |
@@ -102,9 +96,6 @@ class Local(FetchMethod): | |||
102 | filespath = d.getVar('FILESPATH') | 96 | filespath = d.getVar('FILESPATH') |
103 | if filespath: | 97 | if filespath: |
104 | locations = filespath.split(":") | 98 | locations = filespath.split(":") |
105 | filesdir = d.getVar('FILESDIR') | ||
106 | if filesdir: | ||
107 | locations.append(filesdir) | ||
108 | locations.append(d.getVar("DL_DIR")) | 99 | locations.append(d.getVar("DL_DIR")) |
109 | 100 | ||
110 | msg = "Unable to find file " + urldata.url + " anywhere. The paths that were searched were:\n " + "\n ".join(locations) | 101 | msg = "Unable to find file " + urldata.url + " anywhere. The paths that were searched were:\n " + "\n ".join(locations) |