summaryrefslogtreecommitdiffstats
path: root/scripts/lib/devtool/standard.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/devtool/standard.py')
-rw-r--r--scripts/lib/devtool/standard.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py
index 4b9b173156..4eff6f878b 100644
--- a/scripts/lib/devtool/standard.py
+++ b/scripts/lib/devtool/standard.py
@@ -581,8 +581,14 @@ def _extract_source(srctree, keep_temp, devbranch, sync, d):
581 recipe_patches = [os.path.basename(patch) for patch in 581 recipe_patches = [os.path.basename(patch) for patch in
582 oe.recipeutils.get_recipe_patches(crd)] 582 oe.recipeutils.get_recipe_patches(crd)]
583 local_files = oe.recipeutils.get_recipe_local_files(crd) 583 local_files = oe.recipeutils.get_recipe_local_files(crd)
584
585 # Ignore local files with subdir={BP}
586 srcabspath = os.path.abspath(srcsubdir)
584 local_files = [fname for fname in local_files if 587 local_files = [fname for fname in local_files if
585 os.path.exists(os.path.join(workdir, fname))] 588 os.path.exists(os.path.join(workdir, fname)) and
589 (srcabspath == workdir or not
590 os.path.join(workdir, fname).startswith(srcabspath +
591 os.sep))]
586 if local_files: 592 if local_files:
587 for fname in local_files: 593 for fname in local_files:
588 _move_file(os.path.join(workdir, fname), 594 _move_file(os.path.join(workdir, fname),