summaryrefslogtreecommitdiffstats
path: root/meta/classes/base.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/base.bbclass')
-rw-r--r--meta/classes/base.bbclass3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index a7ca3a6676..c3c2669939 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -105,6 +105,9 @@ def get_lic_checksum_file_list(d):
105 # any others should be covered by SRC_URI. 105 # any others should be covered by SRC_URI.
106 try: 106 try:
107 path = bb.fetch.decodeurl(url)[2] 107 path = bb.fetch.decodeurl(url)[2]
108 if not path:
109 raise bb.fetch.MalformedUrl(url)
110
108 if path[0] == '/': 111 if path[0] == '/':
109 if path.startswith(tmpdir): 112 if path.startswith(tmpdir):
110 continue 113 continue