diff options
| author | Alexander Pyhalov <apyhalov@gmail.com> | 2014-05-15 10:28:03 +0400 |
|---|---|---|
| committer | Robert Mustacchi <rm@joyent.com> | 2014-05-19 07:55:53 -0700 |
| commit | a65cd518c5d0f30c53594a7022eb0f7d04c98cef (patch) | |
| tree | 3fd8815f466051e2274f7d101fd52885606a4366 /usr/src/cmd/ssh/ssh-keyscan | |
| parent | 60b43c45a204a6c0651e8017e1e505015ba74094 (diff) | |
| download | illumos-joyent-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-keyscan')
| -rw-r--r-- | usr/src/cmd/ssh/ssh-keyscan/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr/src/cmd/ssh/ssh-keyscan/Makefile b/usr/src/cmd/ssh/ssh-keyscan/Makefile index 9e2fd17160..1aebfa4412 100644 --- a/usr/src/cmd/ssh/ssh-keyscan/Makefile +++ b/usr/src/cmd/ssh/ssh-keyscan/Makefile @@ -32,7 +32,10 @@ SRCS = $(OBJS:.o=.c) include ../../Makefile.cmd include ../Makefile.ssh-common -LDLIBS += $(SSH_COMMON_LDLIBS) -lsocket -lnsl -lz -lcrypto +LDLIBS += $(SSH_COMMON_LDLIBS) -lsocket -lnsl -lz + +# libcrypto has no lint library, so we can only use it when building +$(PROG) := LDLIBS += -lcrypto POFILE_DIR= .. |
