summaryrefslogtreecommitdiff
path: root/tools/buildman/control.py
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2024-07-05 14:34:07 -0600
committerTom Rini <trini@konsulko.com>2024-07-08 09:12:34 -0600
commite13fcae3fce8b2c4db86339c9e8bafdd403f22b5 (patch)
tree0127712ade83d72e880e94251515eacc47886608 /tools/buildman/control.py
parent036e33cffb4a2c9aa68c56c4a92e74a7201ca9b7 (diff)
Revert "buildman: Always use the full path in CROSS_COMPILE"
There are operations in buildman that result in running the cross-tools (such as performing size checks) and now that we have not modified PATH to know where our tools are, these operations fail. This reverts commit 6c0a3cf75f72370deec3ee516a9dd377397af207. Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'tools/buildman/control.py')
-rw-r--r--tools/buildman/control.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/buildman/control.py b/tools/buildman/control.py
index 037854dfc07..464835c5be5 100644
--- a/tools/buildman/control.py
+++ b/tools/buildman/control.py
@@ -788,8 +788,10 @@ def do_buildman(args, toolchains=None, make_func=None, brds=None,
builder = Builder(toolchains, output_dir, git_dir,
args.threads, args.jobs, checkout=True,
show_unknown=args.show_unknown, step=args.step,
- no_subdirs=args.no_subdirs, verbose_build=args.verbose_build,
- mrproper=args.mrproper, fallback_mrproper=args.fallback_mrproper,
+ no_subdirs=args.no_subdirs, full_path=args.full_path,
+ verbose_build=args.verbose_build,
+ mrproper=args.mrproper,
+ fallback_mrproper=args.fallback_mrproper,
per_board_out_dir=args.per_board_out_dir,
config_only=args.config_only,
squash_config_y=not args.preserve_config_y,