aboutsummaryrefslogtreecommitdiff
path: root/secure/usr.bin/ssh-agent
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2002-06-24 12:32:30 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2002-06-24 12:32:30 +0000
commit360c9f6a02c9c547f1d2b62f44783823832aab9e (patch)
tree8602f078820c50bb3d13f90a2eaa48b82d484143 /secure/usr.bin/ssh-agent
parent66ffb8a3710110244ecc099a83f14d44bdea5be4 (diff)
downloadsrc-360c9f6a02c9c547f1d2b62f44783823832aab9e.tar.gz
src-360c9f6a02c9c547f1d2b62f44783823832aab9e.zip
My previous style commits weren't entirely right. Fix some bugs I
introduced, and a few more I hadn't yet fixed. Submitted by: bde
Notes
Notes: svn path=/head/; revision=98749
Diffstat (limited to 'secure/usr.bin/ssh-agent')
-rw-r--r--secure/usr.bin/ssh-agent/Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/secure/usr.bin/ssh-agent/Makefile b/secure/usr.bin/ssh-agent/Makefile
index 3925b99cc96a..c79fd24f805e 100644
--- a/secure/usr.bin/ssh-agent/Makefile
+++ b/secure/usr.bin/ssh-agent/Makefile
@@ -1,11 +1,9 @@
# $FreeBSD$
-#
PROG= ssh-agent
-SRCS= ssh-agent.c
-DPADD+= ${LIBSSH} ${LIBCRYPTO} ${LIBZ}
-LDADD+= -lssh -lcrypto -lz
+DPADD= ${LIBSSH} ${LIBCRYPTO}
+LDADD= -lssh -lcrypto
.include <bsd.prog.mk>