buildroot.busybox.net archive mirror
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] Makefile: only check _FINAL_DEPENDENCIES are selected
@ 2022-01-05 21:38 James Hilliard
  0 siblings, 0 replies; only message in thread
From: James Hilliard @ 2022-01-05 21:38 UTC (permalink / raw)
  To: buildroot; +Cc: James Hilliard

_FINAL_ALL_DEPENDENCIES includes _FINAL_PATCH_DEPENDENCIES which may
not need to be selected in kconfig in cases where building is not
desired, so only check that _FINAL_DEPENDENCIES are selected.

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index ac98b84425..7a2da3b043 100644
--- a/Makefile
+++ b/Makefile
@@ -589,7 +589,7 @@ endif
 endef
 
 $(foreach pkg,$(call UPPERCASE,$(PACKAGES)),\
-	$(foreach dep,$(call UPPERCASE,$($(pkg)_FINAL_ALL_DEPENDENCIES)),\
+	$(foreach dep,$(call UPPERCASE,$($(pkg)_FINAL_DEPENDENCIES)),\
 		$(eval $(call CHECK_ONE_DEPENDENCY,$(pkg),$(dep))$(sep))))
 
 endif
-- 
2.25.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-01-05 21:38 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-05 21:38 [Buildroot] [PATCH 1/1] Makefile: only check _FINAL_DEPENDENCIES are selected James Hilliard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).