summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2013-05-21 13:20:02 +0800
committerMatt Johnston <matt@ucc.asn.au>2013-05-21 13:20:02 +0800
commit5122cdb1ee92dbdea18dc4d5bbbb180ecf1f3240 (patch)
treed07b0ab86b15f89a12076dee3653e5a0bae1d3a6
parentcbc0f5cc730359faaf8f7c2d404993acf78720f6 (diff)
downloaddropbear-5122cdb1ee92dbdea18dc4d5bbbb180ecf1f3240.tar.gz
Fix static library order, libtomcrypt depends on libtommath
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 8d8d279..4f13d1d 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -17,9 +17,9 @@ LTC=libtomcrypt/libtomcrypt.a
LTM=libtommath/libtommath.a
ifeq (@BUNDLED_LIBTOM@, 1)
-LIBTOM_DEPS=$(LTM) $(LTC)
+LIBTOM_DEPS=$(LTC) $(LTM)
CFLAGS+=-I$(srcdir)/libtomcrypt/src/headers/
-LIBS+=$(LTM) $(LTC)
+LIBS+=$(LTC) $(LTM)
endif
COMMONOBJS=dbutil.o buffer.o \