[PATCH] wpa_supplicant/Makefile: use $(LIBS) with wpa_passphrase

Arkadiusz Drabczyk arkadiusz at drabczyk.org
Tue Feb 13 14:49:08 PST 2018


wpa_passphrase requires libcrypto from OpenSSL.  User can set an
alternative path to OpenSSL libraries by defining LIBS at the top of
.config but if $(LIBS) is not actually used wrong libcrypto is used or
compilation fails if there is no libcrypto in the default locations cc
is looking for it.  It's especially bad for cross-compilers that fail
with 'cannot find -lcrypto' message.

Signed-off-by: Arkadiusz Drabczyk <arkadiusz at drabczyk.org>
---
 wpa_supplicant/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wpa_supplicant/Makefile b/wpa_supplicant/Makefile
index 4431755..39af773 100644
--- a/wpa_supplicant/Makefile
+++ b/wpa_supplicant/Makefile
@@ -1868,7 +1868,7 @@ preauth_test: $(OBJS_t2)
 	@$(E) "  LD " $@
 
 wpa_passphrase: $(OBJS_p)
-	$(Q)$(LDO) $(LDFLAGS) -o wpa_passphrase $(OBJS_p) $(LIBS_p)
+	$(Q)$(LDO) $(LDFLAGS) -o wpa_passphrase $(OBJS_p) $(LIBS_p) $(LIBS)
 	@$(E) "  LD " $@
 
 wpa_cli: $(OBJS_c)
-- 
2.9.0


-- 
Arkadiusz Drabczyk <arkadiusz at drabczyk.org>



More information about the Hostap mailing list