From: Romain Izard Date: Mon, 18 Apr 2016 09:23:02 +0000 (+0200) Subject: core/pkg-kconfig: Do not use $(call ...) without parameters X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e645a3b0eda08422664abf798c640719c70549b0;p=buildroot.git core/pkg-kconfig: Do not use $(call ...) without parameters When there are no parameters, simply use $(var) instead of $(call var) Signed-off-by: Romain Izard Reviewed-by: "Yann E. MORIN" Signed-off-by: Thomas Petazzoni --- diff --git a/package/pkg-kconfig.mk b/package/pkg-kconfig.mk index cb177bb2cb..40339150c4 100644 --- a/package/pkg-kconfig.mk +++ b/package/pkg-kconfig.mk @@ -87,7 +87,7 @@ define $(2)_FIXUP_DOT_CONFIG endef $$($(2)_DIR)/.stamp_kconfig_fixup_done: $$($(2)_DIR)/.config - $$(call $(2)_FIXUP_DOT_CONFIG) + $$($(2)_FIXUP_DOT_CONFIG) # Before running configure, the configuration file should be present and fixed $$($(2)_TARGET_CONFIGURE): $$($(2)_DIR)/.stamp_kconfig_fixup_done @@ -139,7 +139,7 @@ $$($(2)_DIR)/.kconfig_editor_%: $$($(2)_DIR)/.stamp_kconfig_fixup_done $$($(2)_KCONFIG_OPTS) $$(*) rm -f $$($(2)_DIR)/.stamp_{kconfig_fixup_done,configured,built} rm -f $$($(2)_DIR)/.stamp_{target,staging,images}_installed - $$(call $(2)_FIXUP_DOT_CONFIG) + $$($(2)_FIXUP_DOT_CONFIG) # Saving back the configuration #