diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-04-20 13:59:47 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-04-27 11:21:31 +0100 |
commit | 1bd70f469deba2c511451afc398f80db1e303124 (patch) | |
tree | 03dc069e5d3ff9e625da2c92f42d084fbfbe80fa /bitbake | |
parent | 5bca57859b280f73b23247aac7dec6b05f48fde8 (diff) | |
download | poky-1bd70f469deba2c511451afc398f80db1e303124.tar.gz |
bitbake: fetch2/osc: Add missing parameter
This probably means the osc fetcher isn't being used but fix the missing
parameter.
(Bitbake rev: a23c201cb6efc5c0abf763c26f905442f0eebb68)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/fetch2/osc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/osc.py b/bitbake/lib/bb/fetch2/osc.py index d9ce44390c..99a529e5bf 100644 --- a/bitbake/lib/bb/fetch2/osc.py +++ b/bitbake/lib/bb/fetch2/osc.py | |||
@@ -43,7 +43,7 @@ class Osc(FetchMethod): | |||
43 | ud.revision = ud.parm['rev'] | 43 | ud.revision = ud.parm['rev'] |
44 | else: | 44 | else: |
45 | pv = d.getVar("PV", False) | 45 | pv = d.getVar("PV", False) |
46 | rev = bb.fetch2.srcrev_internal_helper(ud, d) | 46 | rev = bb.fetch2.srcrev_internal_helper(ud, d, '') |
47 | if rev: | 47 | if rev: |
48 | ud.revision = rev | 48 | ud.revision = rev |
49 | else: | 49 | else: |