aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefano Babic2017-04-05 10:46:41 -0500
committerSimon Glass2017-04-13 15:44:49 -0500
commitb48bfc74ee410b1e6681c620633ffef32aafaba0 (patch)
tree51cd88bdee091c7b2b3139a5f76b6593ae716b36 /Makefile
parent5a8a8045a928702d9b3fb6f73a4e9717040e09a9 (diff)
downloadu-boot-b48bfc74ee410b1e6681c620633ffef32aafaba0.tar.gz
u-boot-b48bfc74ee410b1e6681c620633ffef32aafaba0.tar.xz
u-boot-b48bfc74ee410b1e6681c620633ffef32aafaba0.zip
tools: allow to override python
Not force to use python from PATH. Issue was noted when building with Yocto, because python from the distro is always taken instead of python-native built during Yocto process. Signed-off-by: Stefano Babic <sbabic@denx.de> CC: Simon Glass <sjg@chromium.org> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 09b597d450..8d4e6050b3 100644
--- a/Makefile
+++ b/Makefile
@@ -348,7 +348,7 @@ OBJCOPY = $(CROSS_COMPILE)objcopy
348OBJDUMP = $(CROSS_COMPILE)objdump 348OBJDUMP = $(CROSS_COMPILE)objdump
349AWK = awk 349AWK = awk
350PERL = perl 350PERL = perl
351PYTHON = python 351PYTHON ?= python
352DTC = dtc 352DTC = dtc
353CHECK = sparse 353CHECK = sparse
354 354