diff options
author | Tom Rini <trini@konsulko.com> | 2024-07-05 14:34:07 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-07-08 09:12:34 -0600 |
commit | e13fcae3fce8b2c4db86339c9e8bafdd403f22b5 (patch) | |
tree | 0127712ade83d72e880e94251515eacc47886608 /tools/buildman/bsettings.py | |
parent | 036e33cffb4a2c9aa68c56c4a92e74a7201ca9b7 (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/bsettings.py')
-rw-r--r-- | tools/buildman/bsettings.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/buildman/bsettings.py b/tools/buildman/bsettings.py index a7358cfc08a..aea724fc559 100644 --- a/tools/buildman/bsettings.py +++ b/tools/buildman/bsettings.py @@ -31,9 +31,6 @@ def setup(fname=''): def add_file(data): settings.read_file(io.StringIO(data)) -def add_section(name): - settings.add_section(name) - def get_items(section): """Get the items from a section of the config. |