diff options
-rw-r--r-- | bitbake/lib/bb/fetch2/local.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/local.py b/bitbake/lib/bb/fetch2/local.py index 0bb987c644..5332faafe2 100644 --- a/bitbake/lib/bb/fetch2/local.py +++ b/bitbake/lib/bb/fetch2/local.py | |||
@@ -72,7 +72,7 @@ class Local(FetchMethod): | |||
72 | filespath = d.getVar('FILESPATH') | 72 | filespath = d.getVar('FILESPATH') |
73 | if filespath: | 73 | if filespath: |
74 | locations = filespath.split(":") | 74 | locations = filespath.split(":") |
75 | msg = "Unable to find file " + urldata.url + " anywhere. The paths that were searched were:\n " + "\n ".join(locations) | 75 | msg = "Unable to find file " + urldata.url + " anywhere to download to " + urldata.localpath + ". The paths that were searched were:\n " + "\n ".join(locations) |
76 | raise FetchError(msg) | 76 | raise FetchError(msg) |
77 | 77 | ||
78 | return True | 78 | return True |