aboutsummaryrefslogtreecommitdiff
path: root/secure/usr.bin/sftp
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2005-06-07 09:31:28 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2005-06-07 09:31:28 +0000
commit40e0db94af1a56731b01e22a2cbe66c321f7c6fc (patch)
treea0d1ecfa2e0da5d8fc4aeeacef320972cb332bf5 /secure/usr.bin/sftp
parentf395d8386ab0c2aa9aa9577bba01bc36fc30f8bc (diff)
downloadsrc-40e0db94af1a56731b01e22a2cbe66c321f7c6fc.tar.gz
src-40e0db94af1a56731b01e22a2cbe66c321f7c6fc.zip
Revert the commits that made libssh an INTERNALLIB; they caused too much
trouble, especially on amd64. Requested by: ru
Notes
Notes: svn path=/head/; revision=147098
Diffstat (limited to 'secure/usr.bin/sftp')
-rw-r--r--secure/usr.bin/sftp/Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/secure/usr.bin/sftp/Makefile b/secure/usr.bin/sftp/Makefile
index 1af7d8264da8..08512e860457 100644
--- a/secure/usr.bin/sftp/Makefile
+++ b/secure/usr.bin/sftp/Makefile
@@ -1,13 +1,11 @@
# $FreeBSD$
-LIBSSH= ${.OBJDIR}/../../lib/libssh/libssh.a
-
PROG= sftp
SRCS= sftp.c sftp-client.c sftp-common.c sftp-glob.c progressmeter.c
CFLAGS+=-I${SSHDIR}
DPADD= ${LIBSSH} ${LIBCRYPT} ${LIBCRYPTO} ${LIBZ} ${LIBEDIT}
-LDADD= ${LIBSSH} -lcrypt -lcrypto -lz -ledit
+LDADD= -lssh -lcrypt -lcrypto -lz -ledit
.include <bsd.prog.mk>