]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: Fix new fuzzer builds
authorJouni Malinen <jouni@codeaurora.org>
Tue, 21 Apr 2020 21:51:13 +0000 (00:51 +0300)
committerJouni Malinen <j@w1.fi>
Tue, 21 Apr 2020 21:51:13 +0000 (00:51 +0300)
$(LIBS) got included twice into the linker command line from $^ and
$(LIBS). The former ended up getting converted based on host CPU rather
than target. Fix that by removing duplication and -lcrypto from $(LIBS).

Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
tests/fuzzing/dpp-uri/Makefile
tests/fuzzing/sae/Makefile

index 27b2fddb3b35dfebf18ec99247ee2627011ace2f..10c4ea2f4693ac4b3af4eed18890782150056520 100644 (file)
@@ -13,7 +13,6 @@ LIBS += $(SRC)/common/libcommon.a
 LIBS += $(SRC)/utils/libutils.a
 
 OBJS += $(SRC)/crypto/crypto_openssl.o
-LIBS += -lcrypto
 
 OBJS += $(SRC)/crypto/aes-ctr.o
 OBJS += $(SRC)/crypto/aes-siv.o
@@ -24,7 +23,7 @@ OBJS += $(SRC)/tls/asn1.o
 OBJS += $(SRC)/common/dpp.o
 
 dpp-uri: dpp-uri.o $(OBJS) $(LIBS)
-       $(LDO) $(LDFLAGS) -o $@ $^ $(LIBS)
+       $(LDO) $(LDFLAGS) -o $@ $^ -lcrypto
 
 clean:
        $(MAKE) -C $(SRC) clean
index 0a56e06280f9655dbee8872efd33977d2d90088a..5b86c2f43b13bc1c1d16284b26a874e1d173a874 100644 (file)
@@ -8,14 +8,13 @@ LIBS += $(SRC)/common/libcommon.a
 LIBS += $(SRC)/utils/libutils.a
 
 OBJS += $(SRC)/crypto/crypto_openssl.o
-LIBS += -lcrypto
 OBJS += $(SRC)/crypto/dh_groups.o
 OBJS += $(SRC)/crypto/sha256-prf.o
 OBJS += $(SRC)/crypto/sha256-kdf.o
 OBJS += $(SRC)/common/dragonfly.o
 
 sae: sae.o $(OBJS) $(LIBS)
-       $(LDO) $(LDFLAGS) -o $@ $^ $(LIBS)
+       $(LDO) $(LDFLAGS) -o $@ $^ -lcrypto
 
 clean:
        $(MAKE) -C $(SRC) clean