From: Johan Oudinet Date: Wed, 5 Dec 2018 16:06:17 +0000 (+0100) Subject: package/pkg-rebar.mk: change semantic of _KEEP_DEPENDENCIES X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9b28acb6861c1940ff0a20013820012af58177fd;p=buildroot.git package/pkg-rebar.mk: change semantic of _KEEP_DEPENDENCIES Set it to NO by default and check if it is equal to NO. This is to be more consistent with other boolean variables in Buildroot. Signed-off-by: Johan Oudinet Signed-off-by: Thomas Petazzoni --- diff --git a/package/pkg-rebar.mk b/package/pkg-rebar.mk index 838e7681de..e4e3f3bb6c 100644 --- a/package/pkg-rebar.mk +++ b/package/pkg-rebar.mk @@ -234,9 +234,11 @@ $(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),) +ifeq ($$($(2)_KEEP_DEPENDENCIES),NO) $(2)_POST_PATCH_HOOKS += remove-rebar-config-dependencies endif