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 15:07:49 +0100 |
| commit | f3e57baa3a4f465ad13638c2d8211f890a237208 (patch) | |
| tree | 1c25e9af640a93edd9f02af5351ea12ecc4728df /scripts/lib/devtool/standard.py | |
| parent | 7cb07658d140203d628009433e2164867814d493 (diff) | |
| download | poky-f3e57baa3a4f465ad13638c2d8211f890a237208.tar.gz | |
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.
(From OE-Core rev: 68cbe684fe6d8fe3a44e47ed85837d09077df6d5)
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/devtool/standard.py')
| -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): | |||
| 562 | # Local files can be modified/tracked in separate subdir under srctree | 562 | # Local files can be modified/tracked in separate subdir under srctree |
| 563 | # Mostly useful for packages with S != WORKDIR | 563 | # Mostly useful for packages with S != WORKDIR |
| 564 | f.write('FILESPATH_prepend := "%s:"\n' % | 564 | f.write('FILESPATH_prepend := "%s:"\n' % |
| 565 | os.path.join(srctree, 'local-files')) | 565 | os.path.join(srctree, 'oe-local-files')) |
| 566 | 566 | ||
| 567 | f.write('\ninherit externalsrc\n') | 567 | f.write('\ninherit externalsrc\n') |
| 568 | f.write('# NOTE: We use pn- overrides here to avoid affecting multiple variants in the case where the recipe uses BBCLASSEXTEND\n') | 568 | f.write('# NOTE: We use pn- overrides here to avoid affecting multiple variants in the case where the recipe uses BBCLASSEXTEND\n') |
