2e42840e2a
Now that we have the EXTRACTOR_PKG_DEPENDENCY.* variables available, we can use them to implement extractor-system-dependency: if for a given archive type, the corresponding EXTRACTOR_PKG_DEPENDENCY.<type> variable is empty, then it means we need the corresponding extractor tool to be provided by the system. Following this, EXTRACTOR_DEPENDENCY_PRECHECKED_EXTENSIONS is no longer used, so we can drop it from support/dependencies/. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
8 lines
244 B
Makefile
8 lines
244 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)))
|
|
BR2_XZCAT_HOST_DEPENDENCY = host-xz
|
|
XZCAT = $(HOST_DIR)/bin/xzcat
|
|
endif
|