]> code.ossystems Code Review - openembedded-core.git/commitdiff
devtool: modify: use correct local files directory name
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>
Thu, 1 Oct 2015 10:03:36 +0000 (13:03 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 1 Oct 2015 13:14:07 +0000 (14:14 +0100)
The name of the directory for local source files under srctree is
'oe-local-files', not 'local-files'. Fixes a bug that slipped through
in b7ab82485e4514e07ab8a76e554da27ddc92e6c0.

Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/lib/devtool/standard.py

index b455a2271d19b2ff4ae65956d49447c3cfac74df..8676e4202f9fb4a0f3d9d80e815ea708af4543db 100644 (file)
@@ -562,7 +562,7 @@ def modify(args, config, basepath, workspace):
         # Local files can be modified/tracked in separate subdir under srctree
         # Mostly useful for packages with S != WORKDIR
         f.write('FILESPATH_prepend := "%s:"\n' %
-                os.path.join(srctree, 'local-files'))
+                os.path.join(srctree, 'oe-local-files'))
 
         f.write('\ninherit externalsrc\n')
         f.write('# NOTE: We use pn- overrides here to avoid affecting multiple variants in the case where the recipe uses BBCLASSEXTEND\n')