summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/fetch2/__init__.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py
index 52e12a0a9b..fa963bed59 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -755,6 +755,10 @@ class FetchData(object):
755 if localonly and not isinstance(self.method, local.Local): 755 if localonly and not isinstance(self.method, local.Local):
756 raise NonLocalMethod() 756 raise NonLocalMethod()
757 757
758 if self.parm.get("proto", None) and "protocol" not in self.parm:
759 logger.warn('Consider updating %s recipe to use "protocol" not "proto" in SRC_URI.', d.getVar('PN', True))
760 self.parm["protocol"] = self.parm.get("proto", None)
761
758 if hasattr(self.method, "urldata_init"): 762 if hasattr(self.method, "urldata_init"):
759 self.method.urldata_init(self, d) 763 self.method.urldata_init(self, d)
760 764