diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-09-22 17:21:24 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-22 18:12:54 +0100 |
commit | 0c3f289576a2ab35b1d1d8854d6763553cc3bf09 (patch) | |
tree | 4bd45d35480717e80f4b2db6eaebe7478b3d211b /scripts/lib/devtool/build.py | |
parent | 278f40cce14af430ac1743436132584eedfe792e (diff) | |
download | openembedded-core-contrib-0c3f289576a2ab35b1d1d8854d6763553cc3bf09.tar.gz |
devtool: check that source tree still exists
Sometimes, particularly if you extracted the source to /tmp which is on
tmpfs, the external source tree that is being pointed to may no longer
exist when you come to run "devtool build" or "devtool update-recipe"
etc. Make all of the commands that need to check for a recipe being in
the workspace call a single function and have that function additionally
check the source tree still exists where appropriate.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/devtool/build.py')
-rw-r--r-- | scripts/lib/devtool/build.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/scripts/lib/devtool/build.py b/scripts/lib/devtool/build.py index 335aff54914..9b58858a62e 100644 --- a/scripts/lib/devtool/build.py +++ b/scripts/lib/devtool/build.py @@ -21,7 +21,7 @@ import bb import logging import argparse import tempfile -from devtool import exec_build_env_command, DevtoolError +from devtool import exec_build_env_command, check_workspace_recipe, DevtoolError logger = logging.getLogger('devtool') @@ -42,9 +42,7 @@ def _create_conf_file(values, conf_file=None): def build(args, config, basepath, workspace): """Entry point for the devtool 'build' subcommand""" - if not args.recipename in workspace: - raise DevtoolError("no recipe named %s in your workspace" % - args.recipename) + check_workspace_recipe(workspace, args.recipename) build_task = config.get('Build', 'build_task', 'populate_sysroot') |