[Buildroot] [PATCH] package/pkg-generic: fix reconfigure for kconfig packages

Angelo Compagnucci angelo.compagnucci at gmail.com
Sun Nov 24 23:10:02 UTC 2019


Kconfig based packages are not really reconfigured if the .config file is not
regenerated in the reconfigure target.

Signed-off-by: Angelo Compagnucci <angelo at amarulasolutions.com>
---
 package/pkg-generic.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/pkg-generic.mk b/package/pkg-generic.mk
index 7d6fa08418..d7a678412e 100644
--- a/package/pkg-generic.mk
+++ b/package/pkg-generic.mk
@@ -693,6 +693,7 @@ $(2)_TARGET_EXTRACT =		$$($(2)_DIR)/.stamp_extracted
 $(2)_TARGET_SOURCE =		$$($(2)_DIR)/.stamp_downloaded
 $(2)_TARGET_ACTUAL_SOURCE =	$$($(2)_DIR)/.stamp_actual_downloaded
 $(2)_TARGET_DIRCLEAN =		$$($(2)_DIR)/.stamp_dircleaned
+$(2)_TARGET_DOTCONFIG =		$$($(2)_DIR)/.stamp_dotconfig
 
 # default extract command
 $(2)_EXTRACT_CMDS ?= \
@@ -904,6 +905,7 @@ $(1)-rebuild:		$(1)-clean-for-rebuild $(1)
 
 $(1)-clean-for-reconfigure: $(1)-clean-for-rebuild
 			rm -f $$($(2)_TARGET_CONFIGURE)
+			rm -f $$($(2)_TARGET_DOTCONFIG)
 
 $(1)-reconfigure:	$(1)-clean-for-reconfigure $(1)
 
-- 
2.17.1



More information about the buildroot mailing list