From 82b3c9a47b8729ea2b93d3fda0f792ee4da43ad9 Mon Sep 17 00:00:00 2001 From: Michael 'Mickey' Lauer Date: Wed, 6 Jul 2005 12:01:37 +0000 Subject: [PATCH] add missing self to find_bbfiles() and get_bbfile() --- bin/bitbake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/bitbake b/bin/bitbake index 19d09d5f..35fa5762 100755 --- a/bin/bitbake +++ b/bin/bitbake @@ -796,7 +796,7 @@ class BBCooker: data.setVar("BBFILES", " ".join(files), self.configuration.data) if not len(files): - files = get_bbfiles() + files = self.get_bbfiles() if not len(files): bb.error("no files to build.") @@ -804,7 +804,7 @@ class BBCooker: newfiles = [] for f in files: if os.path.isdir(f): - dirfiles = find_bbfiles(f) + dirfiles = self.find_bbfiles(f) if dirfiles: newfiles += dirfiles continue -- 2.20.1