diff options
| author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2016-03-21 18:14:03 +1300 | 
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-23 14:24:25 +0000 | 
| commit | b2677a4448dbc42e523c731b953b44006749252c (patch) | |
| tree | 717b937bdb174ae74d4b701103056ba65ffcc48f | |
| parent | 3dc7c58b7b3224f3ed2d59d95313e70e4c57d7c4 (diff) | |
| download | openembedded-core-b2677a4448dbc42e523c731b953b44006749252c.tar.gz openembedded-core-b2677a4448dbc42e523c731b953b44006749252c.tar.bz2 openembedded-core-b2677a4448dbc42e523c731b953b44006749252c.zip | |
devtool: configure-help: fix error if do_configure not already run
The code here for running do_configure if it hadn't already been run was
using the wrong string substitution parameters; fix it and test it.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | scripts/lib/devtool/utilcmds.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/scripts/lib/devtool/utilcmds.py b/scripts/lib/devtool/utilcmds.py index 905d6d2b19..b761a80f8f 100644 --- a/scripts/lib/devtool/utilcmds.py +++ b/scripts/lib/devtool/utilcmds.py @@ -86,7 +86,7 @@ def configure_help(args, config, basepath, workspace):          logger.info('Running do_configure to generate configure script')          try:              stdout, _ = exec_build_env_command(config.init_path, basepath, -                                               'bitbake -c configure %s' % msg, args.recipename, +                                               'bitbake -c configure %s' % args.recipename,                                                 stderr=subprocess.STDOUT)          except bb.process.ExecutionError:              pass | 
