0f9c0bf3d5
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>
9 lines
300 B
Makefile
9 lines
300 B
Makefile
# XZCAT is taken from BR2_XZCAT (defaults to 'xzcat') (see Makefile)
|
|
# If it is not present, build our own host-xzcat
|
|
|
|
ifeq (,$(call suitable-host-package,xzcat,$(XZCAT)))
|
|
DEPENDENCIES_HOST_PREREQ += host-xz
|
|
EXTRACTOR_DEPENDENCY_PRECHECKED_EXTENSIONS += .xz .lzma
|
|
XZCAT = $(HOST_DIR)/bin/xzcat
|
|
endif
|