summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
authorMauro Queirós <maurofrqueiros@gmail.com>2021-02-03 04:22:07 -1000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-02-05 12:18:38 +0000
commit9e56bfd02ea88c1b9a3b4a944f009c2f401a8e21 (patch)
treeb5a747a75610d671026d615625f862d6461131b4 /bitbake/lib
parent85c616cb8cd90d2a09989526d49b7352722fee33 (diff)
downloadpoky-9e56bfd02ea88c1b9a3b4a944f009c2f401a8e21.tar.gz
bitbake: git.py: LFS bitbake note should not be printed if need_lfs is not set.
The message "Repository %s has LFS content but it is not being fetched" was being printed, even when Git-LFS was available and "lfs=1" was set. In those situations, we want to fetch LFS content, so that message would not make sense. (Bitbake rev: 2795c6150c0b3218716195c0d10ff2843b1ef695) Signed-off-by: Mauro Queiros <maurofrqueiros@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 45028dfda5a29a34ab408cb3f11d72ae17963340) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/bb/fetch2/git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py
index 59afc32de1..bdbfe5c00f 100644
--- a/bitbake/lib/bb/fetch2/git.py
+++ b/bitbake/lib/bb/fetch2/git.py
@@ -509,7 +509,7 @@ class Git(FetchMethod):
509 if self._contains_lfs(ud, d, destdir): 509 if self._contains_lfs(ud, d, destdir):
510 if need_lfs and not self._find_git_lfs(d): 510 if need_lfs and not self._find_git_lfs(d):
511 raise bb.fetch2.FetchError("Repository %s has LFS content, install git-lfs on host to download (or set lfs=0 to ignore it)" % (repourl)) 511 raise bb.fetch2.FetchError("Repository %s has LFS content, install git-lfs on host to download (or set lfs=0 to ignore it)" % (repourl))
512 else: 512 elif not need_lfs:
513 bb.note("Repository %s has LFS content but it is not being fetched" % (repourl)) 513 bb.note("Repository %s has LFS content but it is not being fetched" % (repourl))
514 514
515 if not ud.nocheckout: 515 if not ud.nocheckout: