25 lines
778 B
Diff
25 lines
778 B
Diff
From: Andrej Shadura <andrew.shadura@collabora.co.uk>
|
|
Date: Fri, 12 Feb 2021 14:28:19 +0100
|
|
Subject: Disable -Werror for eapol_test
|
|
|
|
This may make sense for the upstream, but we just want to build
|
|
the tool to be useful to our users; dealing with build errors due
|
|
to issues normally manifesting themselves as warnings is burdening
|
|
for Debian and its downstreams.
|
|
---
|
|
wpa_supplicant/Makefile | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/wpa_supplicant/Makefile b/wpa_supplicant/Makefile
|
|
index cb66def..26b0c93 100644
|
|
--- a/wpa_supplicant/Makefile
|
|
+++ b/wpa_supplicant/Makefile
|
|
@@ -170,7 +170,7 @@ CFLAGS += -DCONFIG_ELOOP_KQUEUE
|
|
endif
|
|
|
|
ifdef CONFIG_EAPOL_TEST
|
|
-CFLAGS += -Werror -DEAPOL_TEST
|
|
+CFLAGS += -DEAPOL_TEST
|
|
endif
|
|
|
|
ifdef CONFIG_CODE_COVERAGE
|