diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2013-06-18 20:27:21 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2013-06-18 20:27:21 +0000 |
commit | c89acd82646f92a2c33c339d389b2795c057ec89 (patch) | |
tree | 59e03bebbb8027400f0cb4494ad5561d4561bca2 /usr.bin/passwd | |
parent | 270c4a24d2fbf0cf6650367c0bf1d8140d6b02d0 (diff) |
Shuffle library link order to appease the static arch deities.
Diffstat (limited to 'usr.bin/passwd')
-rw-r--r-- | usr.bin/passwd/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/passwd/Makefile b/usr.bin/passwd/Makefile index c8bd9a19ea3..770afda57ef 100644 --- a/usr.bin/passwd/Makefile +++ b/usr.bin/passwd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.33 2013/06/17 19:23:33 robert Exp $ +# $OpenBSD: Makefile,v 1.34 2013/06/18 20:27:20 miod Exp $ .include <bsd.own.mk> @@ -21,8 +21,8 @@ CFLAGS+=-DYP -I${.CURDIR}/../../lib/libc/yp SRCS+= krb5_passwd.c CFLAGS+= -DKRB5 DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBCRYPTO} -LDADD+= -lkrb5 -lasn1 -lcrypto -LDADD+= -lhx509 -lwind -lroken -lcom_err -lpthread -lheimbase +LDADD+= -lkrb5 -lhx509 -lasn1 -lcrypto +LDADD+= -lwind -lroken -lcom_err -lpthread -lheimbase .endif BINMODE=4555 |