[oe-commits] [openembedded-core] 08/69: devtool: configure-help: fix error if do_configure not already run

git at git.openembedded.org git at git.openembedded.org
Wed Mar 23 14:25:56 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit b2677a4448dbc42e523c731b953b44006749252c
Author: Paul Eggleton <paul.eggleton at linux.intel.com>
AuthorDate: Mon Mar 21 18:14:03 2016 +1300

    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 at linux.intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 scripts/lib/devtool/utilcmds.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/lib/devtool/utilcmds.py b/scripts/lib/devtool/utilcmds.py
index 905d6d2..b761a80 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

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list