aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2020-02-08 11:34:41 +0100
committerJo-Philipp Wich <jo@mein.io>2020-02-08 11:54:23 +0100
commit05062462f12952dba47c2c4529a179576e4a4fd9 (patch)
tree5971fc7eeb669839d8f1195ad2fe7e246202955f
parent6b10354b3cd7e70670840390f41226b28dac60df (diff)
downloadupstream-05062462f12952dba47c2c4529a179576e4a4fd9.tar.gz
upstream-05062462f12952dba47c2c4529a179576e4a4fd9.tar.bz2
upstream-05062462f12952dba47c2c4529a179576e4a4fd9.zip
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čí <cynerd@email.cz> Suggested-by: Jonas Gorski <jonas.gorski@gmail.com> Tested-by: Shaleen Jain <shaleen@jain.sh> Signed-off-by: Jo-Philipp Wich <jo@mein.io> (backported from commit 766e778226f5d4c6ec49ce22b101a5dbd4306644)
-rw-r--r--package/network/services/hostapd/Makefile3
1 files changed, 0 insertions, 3 deletions
diff --git a/package/network/services/hostapd/Makefile b/package/network/services/hostapd/Makefile
index 9712e7247a..9d9f4d451c 100644
--- a/package/network/services/hostapd/Makefile
+++ b/package/network/services/hostapd/Makefile
@@ -88,9 +88,6 @@ DRIVER_MAKEOPTS= \
CONFIG_IEEE80211AC=$(HOSTAPD_IEEE80211AC) \
CONFIG_DRIVER_WEXT=$(CONFIG_DRIVER_WEXT_SUPPORT) \
-space :=
-space +=
-
ifeq ($(LOCAL_VARIANT),full)
DRIVER_MAKEOPTS += CONFIG_IEEE80211W=$(CONFIG_DRIVER_11W_SUPPORT)
endif