]> git.baikalelectronics.ru Git - uboot.git/commit
tools: Fix default target compile tools in Python tools
authorAlper Nebi Yasak <alpernebiyasak@gmail.com>
Mon, 7 Jun 2021 18:11:37 +0000 (21:11 +0300)
committerSimon Glass <sjg@chromium.org>
Tue, 6 Jul 2021 16:38:03 +0000 (10:38 -0600)
commitea239c66f4d0cc5ca55cc0a667fdfb0385cdbdc7
treee4cf6c83d72574b8acbc7e9cef89b695d4cdd367
parentaf524d0676ec2eb94814ddd589ef53d0396fb631
tools: Fix default target compile tools in Python tools

In commit 61a15059cbb6 ("binman: Use target-specific tools when
cross-compiling"), a utility function was implemented to get preferred
compilation tools using environment variables like CC and CROSS_COMPILE.
Although it intended to provide custom default tools (same as those in
the global Makefile) when no relevant variables were set (for example
using "gcc" for "cc"), it is only doing so when CROSS_COMPILE is set and
returning the literal name of the tool otherwise.

Remove the check for an empty CROSS_COMPILE, which makes the function
use it as an empty prefix to the custom defaults and return the intended
executables.

Fixes: 61a15059cbb6 ("binman: Use target-specific tools when cross-compiling")
Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com>
tools/patman/tools.py