From 46ecf5d25c0f939010e7c18fc8ef7df33c9b062e Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Thu, 13 Nov 2025 07:49:07 -0800 Subject: [PATCH] Revert "Fetch the custom cfg/CONFIG_* files early" This reverts commit e4fbd83c93a68a1d9cb863ff341735388d246347. --- configure/CONFIG | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/configure/CONFIG b/configure/CONFIG index edf8d4f73..e72537db1 100644 --- a/configure/CONFIG +++ b/configure/CONFIG @@ -50,9 +50,6 @@ endif include $(CONFIG)/CONFIG_COMMON include $(CONFIG)/CONFIG_FILE_TYPE -# Fetch the module-specific CFGS before overwriting INSTALL_LOCATION in order to load them later -TOP_CFG_CONFIGS := $(wildcard $(INSTALL_CFG)/CONFIG*) - # Base-specific build options # include $(CONFIG)/CONFIG_BASE @@ -120,6 +117,7 @@ endif # Include $(INSTALL_CFG)/CONFIG* definitions # +TOP_CFG_CONFIGS = $(wildcard $(INSTALL_CFG)/CONFIG*) ifneq ($(TOP_CFG_CONFIGS),) include $(TOP_CFG_CONFIGS) endif