mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 07:51:59 -09:00
Globally replace $(HOST_DIR)/usr/bin with $(HOST_DIR)/bin
Since things are no longer installed in $(HOST_DIR)/usr, the callers should also not refer to it. This is a mechanical change with git grep -l '$(HOST_DIR)/usr/bin' | xargs sed -i 's%$(HOST_DIR)/usr/bin%$(HOST_DIR)/bin%g' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
15bff58f3e
commit
0f9c0bf3d5
@@ -204,12 +204,12 @@ endif
|
||||
# - otherwise, we use the one requested by *_NEEDS_HOST_PYTHON.
|
||||
#
|
||||
ifeq ($(4),target)
|
||||
$(2)_PYTHON_INTERPRETER = $$(HOST_DIR)/usr/bin/python
|
||||
$(2)_PYTHON_INTERPRETER = $$(HOST_DIR)/bin/python
|
||||
else
|
||||
ifeq ($$($(2)_NEEDS_HOST_PYTHON),)
|
||||
$(2)_PYTHON_INTERPRETER = $$(HOST_DIR)/usr/bin/python
|
||||
$(2)_PYTHON_INTERPRETER = $$(HOST_DIR)/bin/python
|
||||
else
|
||||
$(2)_PYTHON_INTERPRETER = $$(HOST_DIR)/usr/bin/$$($(2)_NEEDS_HOST_PYTHON)
|
||||
$(2)_PYTHON_INTERPRETER = $$(HOST_DIR)/bin/$$($(2)_NEEDS_HOST_PYTHON)
|
||||
endif
|
||||
endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user