Bump buildroot to 2019.02

This commit is contained in:
2019-03-28 22:49:48 +01:00
parent 5598b1b762
commit 920d307141
5121 changed files with 78550 additions and 46132 deletions

View File

@@ -94,6 +94,13 @@ define install-rebar-deps
$(REBAR_$(2)_DEPS_DIR)/$($(PKG)_ERLANG_APP)
endef
# Remove the "deps" statement from a rebar.config file
define remove-rebar-config-dependencies
$(SED) '/^{deps.*}\.$$/d' -e '/^{deps/,/}\.$$/d' \
$($(PKG)_DIR)/rebar.config
endef
################################################################################
# inner-rebar-package -- defines how the configuration, compilation
# and installation of a rebar package should be done, implements a few
@@ -227,6 +234,14 @@ $(2)_REBAR = rebar
$(2)_DEPENDENCIES += host-erlang-rebar
endif
$(2)_KEEP_DEPENDENCIES ?= NO
# Remove dependencies listed in rebar.config unless the package says
# otherwise
ifeq ($$($(2)_KEEP_DEPENDENCIES),NO)
$(2)_POST_PATCH_HOOKS += remove-rebar-config-dependencies
endif
# The package sub-infra to use
#
ifeq ($$($(2)_USE_AUTOCONF),YES)