diff options
-rw-r--r-- | scripts/lib/recipetool/append.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/lib/recipetool/append.py b/scripts/lib/recipetool/append.py index ed4af2054a..3f2f9a4f4f 100644 --- a/scripts/lib/recipetool/append.py +++ b/scripts/lib/recipetool/append.py | |||
@@ -356,6 +356,10 @@ def appendsrc(args, files, rd): | |||
356 | for newfile, srcfile in files.iteritems(): | 356 | for newfile, srcfile in files.iteritems(): |
357 | src_destdir = os.path.dirname(srcfile) | 357 | src_destdir = os.path.dirname(srcfile) |
358 | if not args.use_workdir: | 358 | if not args.use_workdir: |
359 | if rd.getVar('S', True) == rd.getVar('STAGING_KERNEL_DIR', True): | ||
360 | srcdir = os.path.join(workdir, 'git') | ||
361 | if not bb.data.inherits_class('kernel-yocto', rd): | ||
362 | logger.warn('S == STAGING_KERNEL_DIR and non-kernel-yocto, unable to determine path to srcdir, defaulting to ${WORKDIR}/git') | ||
359 | src_destdir = os.path.join(os.path.relpath(srcdir, workdir), src_destdir) | 363 | src_destdir = os.path.join(os.path.relpath(srcdir, workdir), src_destdir) |
360 | src_destdir = os.path.normpath(src_destdir) | 364 | src_destdir = os.path.normpath(src_destdir) |
361 | 365 | ||