diff options
author | Simon Glass <sjg@chromium.org> | 2014-07-14 17:51:03 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-07-28 04:52:55 +0100 |
commit | 189a496825aefe7c8e9be80c0f2a4cf5923d4f55 (patch) | |
tree | 8d6e523fd0deca56821b6edb9814bde229b81a5a /tools/buildman/control.py | |
parent | 97e915262e06c5980124de2e0fe5c2f34b40ee8f (diff) |
buildman: Support in-tree builds
At present buildman always builds out-of-tree, that is it uses a separate
output directory from the source directory. Normally this is what you want,
but it is important that in-tree builds work also. Some Makefile changes may
break this.
Add a -i option to tell buildman to use in-tree builds, so that it is easy
to test this feature.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman/control.py')
-rw-r--r-- | tools/buildman/control.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/buildman/control.py b/tools/buildman/control.py index a737fd1bdc..2dd80434eb 100644 --- a/tools/buildman/control.py +++ b/tools/buildman/control.py @@ -158,6 +158,7 @@ def DoBuildman(options, args): builder.force_build = options.force_build builder.force_build_failures = options.force_build_failures builder.force_reconfig = options.force_reconfig + builder.in_tree = options.in_tree # Work out which boards to build board_selected = boards.GetSelectedDict() |