diff mbox series

Fix hostapd build with CONFIG_WPA_TRACE but no CONFIG_WPA_TRACE_BFD

Message ID 20191017231915.91237-1-briannorris@chromium.org
State Accepted
Headers show
Series Fix hostapd build with CONFIG_WPA_TRACE but no CONFIG_WPA_TRACE_BFD | expand

Commit Message

Brian Norris Oct. 17, 2019, 11:19 p.m. UTC
Otherwise, we may get linker failures:

  ld.lld: error: unable to find library -lbfd

While we're at it, pull in the library selection fixes from:
848905b12abf Avoid undefined references with CONFIG_WPA_TRACE_BFD=y

Signed-off-by: Brian Norris <briannorris@chromium.org>
---
 hostapd/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Jouni Malinen Oct. 25, 2019, 4:54 p.m. UTC | #1
On Thu, Oct 17, 2019 at 04:19:15PM -0700, Brian Norris wrote:
> Otherwise, we may get linker failures:
> 
>   ld.lld: error: unable to find library -lbfd
> 
> While we're at it, pull in the library selection fixes from:
> 848905b12abf Avoid undefined references with CONFIG_WPA_TRACE_BFD=y

Thanks, applied.
diff mbox series

Patch

diff --git a/hostapd/Makefile b/hostapd/Makefile
index 42bb9e4c8aa6..955e27856401 100644
--- a/hostapd/Makefile
+++ b/hostapd/Makefile
@@ -121,6 +121,7 @@  CFLAGS += -DPACKAGE="hostapd" -DWPA_TRACE_BFD
 LIBS += -lbfd -ldl -liberty -lz
 LIBS_c += -lbfd -ldl -liberty -lz
 LIBS_h += -lbfd -ldl -liberty -lz
+LIBS_n += -lbfd -ldl -liberty -lz
 endif
 endif
 
@@ -1313,7 +1314,6 @@  NOBJS += ../src/utils/wpa_debug.o
 NOBJS += ../src/utils/wpabuf.o
 ifdef CONFIG_WPA_TRACE
 NOBJS += ../src/utils/trace.o
-LIBS_n += -lbfd
 endif
 
 HOBJS += hlr_auc_gw.o ../src/utils/common.o ../src/utils/wpa_debug.o ../src/utils/os_$(CONFIG_OS).o ../src/utils/wpabuf.o ../src/crypto/milenage.o