Commit a41a29192e5d ("build: Pull common fragments into a build.rules file") introduced regression into wpa_supplicant build process. Build target libwpa_client.so is not built regardless of whether the option CONFIG_BUILD_WPA_CLIENT_SO is set or not. This happens because config option is used before it is imported from the configuration file. Moving its usage after including build.rules does not help: variable ALL is processed by build.rules and further changes are not applied. This commit moves imports of hostapd/wpa_s configuration files from build.rules back into Makefiles. Signed-off-by: Sergey Matyukevich <geomatsi@xxxxxxxxx> --- hostapd/Makefile | 7 ++++++- src/build.rules | 1 - wpa_supplicant/Makefile | 8 +++++++- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/hostapd/Makefile b/hostapd/Makefile index e37c13b27..7570d567a 100644 --- a/hostapd/Makefile +++ b/hostapd/Makefile @@ -1,6 +1,11 @@ -ALL=hostapd hostapd_cli CONFIG_FILE = .config +ifneq ($(CONFIG_FILE),) +-include $(CONFIG_FILE) +endif + +ALL=hostapd hostapd_cli + include ../src/build.rules ifdef LIBS diff --git a/src/build.rules b/src/build.rules index acda88472..e22f5d538 100644 --- a/src/build.rules +++ b/src/build.rules @@ -35,7 +35,6 @@ CFLAGS = -MMD -O2 -Wall -g endif ifneq ($(CONFIG_FILE),) --include $(CONFIG_FILE) # export for sub-makefiles export CONFIG_CODE_COVERAGE diff --git a/wpa_supplicant/Makefile b/wpa_supplicant/Makefile index cb66defac..21fe92bda 100644 --- a/wpa_supplicant/Makefile +++ b/wpa_supplicant/Makefile @@ -1,3 +1,9 @@ +CONFIG_FILE = .config + +ifneq ($(CONFIG_FILE),) +-include $(CONFIG_FILE) +endif + BINALL=wpa_supplicant wpa_cli ifndef CONFIG_NO_WPA_PASSPHRASE @@ -10,13 +16,13 @@ ALL += systemd/wpa_supplicant@.service ALL += systemd/wpa_supplicant-nl80211@.service ALL += systemd/wpa_supplicant-wired@.service ALL += dbus/fi.w1.wpa_supplicant1.service + ifdef CONFIG_BUILD_WPA_CLIENT_SO ALL += libwpa_client.so endif EXTRA_TARGETS=dynamic_eap_methods -CONFIG_FILE=.config include ../src/build.rules ifdef LIBS -- 2.35.1 _______________________________________________ Hostap mailing list Hostap@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/hostap