From: Jouni Malinen Date: Thu, 28 Feb 2013 14:16:07 +0000 (+0200) Subject: Fix test-{md5,sha1} builds X-Git-Tag: aosp-kk-from-upstream~529 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=565bb65d5c2fa5be4080786921f07592849da5d8;p=thirdparty%2Fhostap.git Fix test-{md5,sha1} builds These need to include the libraries to fix aliasing_hide_typecast() in md5-internal.c. Signed-hostap: Jouni Malinen --- diff --git a/tests/Makefile b/tests/Makefile index 3f5a8c283..cccc3dcb0 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -57,7 +57,7 @@ test-md4: test-md4.o $(LIBS) $(LDO) $(LDFLAGS) -o $@ $^ test-md5: test-md5.o $(LIBS) - $(LDO) $(LDFLAGS) -o $@ $^ + $(LDO) $(LDFLAGS) -o $@ $^ $(LIBS) test-milenage: test-milenage.o $(LIBS) $(LDO) $(LDFLAGS) -o $@ $^ @@ -72,7 +72,7 @@ test-rc4: test-rc4.o $(LIBS) $(LDO) $(LDFLAGS) -o $@ $^ test-sha1: test-sha1.o $(LIBS) - $(LDO) $(LDFLAGS) -o $@ $^ + $(LDO) $(LDFLAGS) -o $@ $^ $(LIBS) test-sha256: test-sha256.o $(LIBS) $(LDO) $(LDFLAGS) -o $@ $^