summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2000-03-01 18:33:56 +0000
committerderaadt <deraadt@openbsd.org>2000-03-01 18:33:56 +0000
commitf7f4f9ee888ca56e5a1e32286b021f77ea6a788c (patch)
treeb9373554f2d6487a9cc5332e05b9cddd55992597
parentWall (diff)
downloadwireguard-openbsd-f7f4f9ee888ca56e5a1e32286b021f77ea6a788c.tar.xz
wireguard-openbsd-f7f4f9ee888ca56e5a1e32286b021f77ea6a788c.zip
order kerberos libraries properly
-rw-r--r--usr.bin/login/Makefile4
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