diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-03-01 18:33:57 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-03-01 18:33:57 +0000 |
commit | 65e1de1296c72d56ceb18d10651d563607b8025e (patch) | |
tree | f20d5ea090f92c1a318fe3e4d6c60333e4e099fd /usr.bin | |
parent | b500ce09e92b053531e33b2a5204a792bd4a4c68 (diff) |
order kerberos libraries properly
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/login/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/login/Makefile b/usr.bin/login/Makefile index 49ae04f975b..fa54d2fd466 100644 --- a/usr.bin/login/Makefile +++ b/usr.bin/login/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.13 1998/03/26 23:47:29 deraadt Exp $ +# $OpenBSD: Makefile,v 1.14 2000/03/01 18:33:56 deraadt Exp $ PROG= login SRCS= login.c failedlogin.c @@ -22,7 +22,7 @@ DPADD+= ${LIBKRB5} ${LIBCRYPTO} .elif (${KERBEROS} == "yes") CFLAGS+= -DKERBEROS SRCS+= klogin.c -LDADD+= -lkrb -ldes -lkafs +LDADD+= -lkafs -lkrb -ldes DPADD+= ${LIBKRB} ${LIBDES} ${LIBKAFS} .endif |