diff options
author | Matt Johnston <matt@ucc.asn.au> | 2020-10-20 23:33:45 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2020-10-20 23:33:45 +0800 |
commit | 3b400bd64e868e861a2977a2db3053fc72476abc (patch) | |
tree | 33be6d5d1bdffc4f2cc605c89d431c71d021eac3 | |
parent | f74baa5830c563c6efbd3ca5df6f895b8ffe3317 (diff) |
Don't sort objects, it breaks -lcrypt ordering
-rw-r--r-- | Makefile.in | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index fae4cf3..182cb42 100644 --- a/Makefile.in +++ b/Makefile.in @@ -65,7 +65,6 @@ ifeq (@DROPBEAR_FUZZ@, 1) allobjs = $(COMMONOBJS) fuzz-common.o fuzz-wrapfd.o $(CLISVROBJS) $(CLIOBJS) $(SVROBJS) @CRYPTLIB@ allobjs:=$(subst svr-main.o, ,$(allobjs)) allobjs:=$(subst cli-main.o, ,$(allobjs)) - allobjs:=$(sort $(allobjs)) dropbearobjs=$(allobjs) svr-main.o dbclientobjs=$(allobjs) cli-main.o |