diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2015-09-30 16:51:53 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-10-01 14:13:47 +0100 |
commit | b54796d013c562972e962126400503085281b425 (patch) | |
tree | 266a795ced74ba74b5f3c11487afdee3720ca563 /scripts/lib/devtool/standard.py | |
parent | 16957f5f1de0f1fb4052d5aef93ee10c893f4a38 (diff) | |
download | openembedded-core-b54796d013c562972e962126400503085281b425.tar.gz openembedded-core-b54796d013c562972e962126400503085281b425.tar.bz2 openembedded-core-b54796d013c562972e962126400503085281b425.zip |
devtool: update-recipe: enable var history tracking
Enable variable history tracking so that the variables are updated in
the correct file - i.e. in the file they are already defined.
[YOCTO #7715]
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 20eafec052..b455a2271d 100644 --- a/scripts/lib/devtool/standard.py +++ b/scripts/lib/devtool/standard.py @@ -955,7 +955,7 @@ def update_recipe(args, config, basepath, workspace): raise DevtoolError('conf/layer.conf not found in bbappend ' 'destination layer "%s"' % args.append) - tinfoil = setup_tinfoil(basepath=basepath) + tinfoil = setup_tinfoil(basepath=basepath, tracking=True) rd = parse_recipe(config, tinfoil, args.recipename, True) if not rd: |