diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2015-10-01 13:03:36 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-10-01 14:14:07 +0100 |
commit | 68cbe684fe6d8fe3a44e47ed85837d09077df6d5 (patch) | |
tree | ee0cdcace827fc8873773b4cecdcf87832f1e86c /scripts/lib | |
parent | 9f37ce18b7d79135a67474187b6119980e0130ae (diff) | |
download | openembedded-core-68cbe684fe6d8fe3a44e47ed85837d09077df6d5.tar.gz openembedded-core-68cbe684fe6d8fe3a44e47ed85837d09077df6d5.tar.bz2 openembedded-core-68cbe684fe6d8fe3a44e47ed85837d09077df6d5.zip |
devtool: modify: use correct local files directory name
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>
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/devtool/standard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index b455a2271d..8676e4202f 100644 --- a/scripts/lib/devtool/standard.py +++ b/scripts/lib/devtool/standard.py @@ -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') |