From: Jo-Philipp Wich Date: Sat, 8 Feb 2020 10:34:41 +0000 (+0100) Subject: hostapd: remove erroneous $(space) redefinition X-Git-Tag: v1.5.1~18 X-Git-Url: https://git.librecmc.org/?p=librecmc%2Flibrecmc.git;a=commitdiff_plain;h=9e95612031aadf2556b644bb610a7c8cc7005a4b hostapd: remove erroneous $(space) redefinition The $(space) definition in the hostapd Makefile ceased to work with GNU Make 4.3 and later, leading to syntax errors in the generated Kconfig files. Drop the superfluous redefinition and reuse the working $(space) declaration from rules.mk to fix this issue. Fixes: GH#2713 Ref: https://github.com/openwrt/openwrt/pull/2713#issuecomment-583722469 Reported-by: Karel Kočí Suggested-by: Jonas Gorski Tested-by: Shaleen Jain Signed-off-by: Jo-Philipp Wich (cherry picked from commit 766e778226f5d4c6ec49ce22b101a5dbd4306644) --- diff --git a/package/network/services/hostapd/Makefile b/package/network/services/hostapd/Makefile index 4f6420f503..530317f023 100644 --- a/package/network/services/hostapd/Makefile +++ b/package/network/services/hostapd/Makefile @@ -86,9 +86,6 @@ DRIVER_MAKEOPTS= \ CONFIG_IEEE80211AC=$(HOSTAPD_IEEE80211AC) \ CONFIG_DRIVER_WEXT=$(CONFIG_DRIVER_WEXT_SUPPORT) \ -space := -space += - ifneq ($(LOCAL_VARIANT),mini) DRIVER_MAKEOPTS += CONFIG_IEEE80211W=$(CONFIG_DRIVER_11W_SUPPORT) endif