2c6390a5d0
Most of the extract tools (gzip/bzip/..) we already check for explicitly in dependencies.sh (as they are used outside GENTARGETS), but not for xzcat. The .xz format is used fairly rarely, and it is likely to not be available on build hosts, so an explicit (hardcoded) check for it isn't optimal. Instead, add the inflate tools used to DL_TOOLS_DEPENDENCIES, similar to how we do it for svn/git/bzr/... Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
36 lines
907 B
Makefile
36 lines
907 B
Makefile
######################################################################
|
|
#
|
|
# Check buildroot dependencies and bail out if the user's
|
|
# system is judged to be lacking....
|
|
#
|
|
######################################################################
|
|
|
|
DEPENDENCIES_HOST_PREREQ:=
|
|
ifeq ($(BR2_STRIP_sstrip),y)
|
|
DEPENDENCIES_HOST_PREREQ+=host-sstrip
|
|
endif
|
|
|
|
core-dependencies:
|
|
@HOSTCC="$(firstword $(HOSTCC))" MAKE="$(MAKE)" \
|
|
CONFIG_FILE="$(CONFIG_DIR)/.config" \
|
|
DL_TOOLS="$(sort $(DL_TOOLS_DEPENDENCIES))" \
|
|
$(TOPDIR)/toolchain/dependencies/dependencies.sh
|
|
|
|
dependencies: core-dependencies $(DEPENDENCIES_HOST_PREREQ)
|
|
|
|
dependencies-source:
|
|
|
|
dependencies-clean:
|
|
rm -f $(SSTRIP_TARGET)
|
|
|
|
dependencies-dirclean:
|
|
true
|
|
|
|
#############################################################
|
|
#
|
|
# Toplevel Makefile options
|
|
#
|
|
#############################################################
|
|
.PHONY: dependencies core-dependencies
|
|
|