summaryrefslogtreecommitdiffstats
path: root/scripts/lib/devtool/deploy.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/devtool/deploy.py')
-rw-r--r--scripts/lib/devtool/deploy.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/lib/devtool/deploy.py b/scripts/lib/devtool/deploy.py
index e14a587417..eadf6e1521 100644
--- a/scripts/lib/devtool/deploy.py
+++ b/scripts/lib/devtool/deploy.py
@@ -140,6 +140,7 @@ def deploy(args, config, basepath, workspace):
140 import math 140 import math
141 import oe.recipeutils 141 import oe.recipeutils
142 import oe.package 142 import oe.package
143 import oe.utils
143 144
144 check_workspace_recipe(workspace, args.recipename, checksrc=False) 145 check_workspace_recipe(workspace, args.recipename, checksrc=False)
145 146
@@ -174,7 +175,7 @@ def deploy(args, config, basepath, workspace):
174 exec_fakeroot(rd, "cp -af %s %s" % (os.path.join(srcdir, '.'), recipe_outdir), shell=True) 175 exec_fakeroot(rd, "cp -af %s %s" % (os.path.join(srcdir, '.'), recipe_outdir), shell=True)
175 os.environ['PATH'] = ':'.join([os.environ['PATH'], rd.getVar('PATH') or '']) 176 os.environ['PATH'] = ':'.join([os.environ['PATH'], rd.getVar('PATH') or ''])
176 oe.package.strip_execs(args.recipename, recipe_outdir, rd.getVar('STRIP'), rd.getVar('libdir'), 177 oe.package.strip_execs(args.recipename, recipe_outdir, rd.getVar('STRIP'), rd.getVar('libdir'),
177 rd.getVar('base_libdir'), rd) 178 rd.getVar('base_libdir'), oe.utils.get_bb_number_threads(rd), rd)
178 179
179 filelist = [] 180 filelist = []
180 inodes = set({}) 181 inodes = set({})