summaryrefslogtreecommitdiff
path: root/usr/src/cmd/ssh/ssh-add
diff options
context:
space:
mode:
authorAlexander Pyhalov <apyhalov@gmail.com>2014-05-15 10:28:03 +0400
committerRobert Mustacchi <rm@joyent.com>2014-05-19 07:55:53 -0700
commita65cd518c5d0f30c53594a7022eb0f7d04c98cef (patch)
tree3fd8815f466051e2274f7d101fd52885606a4366 /usr/src/cmd/ssh/ssh-add
parent60b43c45a204a6c0651e8017e1e505015ba74094 (diff)
downloadillumos-gate-a65cd518c5d0f30c53594a7022eb0f7d04c98cef.tar.gz
4853 illumos-gate is not lint-clean when built with openssl 1.0
Reviewed by: Keith Wesolowski <keith.wesolowski@joyent.com> Reviewed by: Alexander Eremin <alexander.eremin@nexenta.com> Approved by: Robert Mustacchi <rm@joyent.com>
Diffstat (limited to 'usr/src/cmd/ssh/ssh-add')
-rw-r--r--usr/src/cmd/ssh/ssh-add/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/usr/src/cmd/ssh/ssh-add/Makefile b/usr/src/cmd/ssh/ssh-add/Makefile
index 1fb132f741..a8ac9ebe52 100644
--- a/usr/src/cmd/ssh/ssh-add/Makefile
+++ b/usr/src/cmd/ssh/ssh-add/Makefile
@@ -32,7 +32,10 @@ SRCS = $(OBJS:.o=.c)
include ../../Makefile.cmd
include ../Makefile.ssh-common
-LDLIBS += $(SSH_COMMON_LDLIBS) -lsocket -lcrypto
+LDLIBS += $(SSH_COMMON_LDLIBS) -lsocket
+
+# libcrypto has no lint library, so we can only use it when building
+$(PROG) := LDLIBS += -lcrypto
POFILE_DIR= ..