Mercurial > dropbear
changeset 803:460410334267 ecc
Fix static library order, libtomcrypt depends on libtommath
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 21 May 2013 13:20:02 +0800 |
parents | 4029d3432a4f |
children | 34b73c9d8aa3 |
files | Makefile.in |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile.in Tue May 21 12:15:48 2013 +0800 +++ b/Makefile.in Tue May 21 13:20:02 2013 +0800 @@ -17,9 +17,9 @@ 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 \