summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/bldcontrol/localhostbecontroller.py')
-rw-r--r--bitbake/lib/toaster/bldcontrol/localhostbecontroller.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py b/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
index 283e154530..fbc5ee9d1d 100644
--- a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
+++ b/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
@@ -98,8 +98,12 @@ class LocalhostBEController(BuildEnvironmentController):
98 # 1. get a list of repos with branches, and map dirpaths for each layer 98 # 1. get a list of repos with branches, and map dirpaths for each layer
99 gitrepos = {} 99 gitrepos = {}
100 100
101 gitrepos[(bitbake.giturl, bitbake.commit)] = [] 101 # if we're using a remotely fetched version of bitbake add its git
102 gitrepos[(bitbake.giturl, bitbake.commit)].append( ("bitbake", bitbake.dirpath) ) 102 # details to the list of repos to clone
103 if bitbake.giturl and bitbake.commit:
104 gitrepos[(bitbake.giturl, bitbake.commit)] = []
105 gitrepos[(bitbake.giturl, bitbake.commit)].append(
106 ("bitbake", bitbake.dirpath))
103 107
104 for layer in layers: 108 for layer in layers:
105 # We don't need to git clone the layer for the CustomImageRecipe 109 # We don't need to git clone the layer for the CustomImageRecipe
@@ -142,8 +146,6 @@ class LocalhostBEController(BuildEnvironmentController):
142 146
143 logger.info("Using pre-checked out source for layer %s", cached_layers) 147 logger.info("Using pre-checked out source for layer %s", cached_layers)
144 148
145
146
147 # 3. checkout the repositories 149 # 3. checkout the repositories
148 for giturl, commit in gitrepos.keys(): 150 for giturl, commit in gitrepos.keys():
149 localdirname = os.path.join(self.be.sourcedir, self.getGitCloneDirectory(giturl, commit)) 151 localdirname = os.path.join(self.be.sourcedir, self.getGitCloneDirectory(giturl, commit))