diff options
author | 2000-03-01 18:33:56 +0000 | |
---|---|---|
committer | 2000-03-01 18:33:56 +0000 | |
commit | f7f4f9ee888ca56e5a1e32286b021f77ea6a788c (patch) | |
tree | b9373554f2d6487a9cc5332e05b9cddd55992597 | |
parent | Wall (diff) | |
download | wireguard-openbsd-f7f4f9ee888ca56e5a1e32286b021f77ea6a788c.tar.xz wireguard-openbsd-f7f4f9ee888ca56e5a1e32286b021f77ea6a788c.zip |
order kerberos libraries properly
-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 |