diff options
author | 2013-07-02 13:32:38 +0000 | |
---|---|---|
committer | 2013-07-02 13:32:38 +0000 | |
commit | 21662c96e673152f4a89ce2772c577d0e3ea73f3 (patch) | |
tree | ee361ae7af8f56318aac0e3fb1b7254a211d4bff /usr.bin/ssh/ssh-keysign | |
parent | remove extra whitespace (diff) | |
download | wireguard-openbsd-21662c96e673152f4a89ce2772c577d0e3ea73f3.tar.xz wireguard-openbsd-21662c96e673152f4a89ce2772c577d0e3ea73f3.zip |
add missing library dependencies
Diffstat (limited to 'usr.bin/ssh/ssh-keysign')
-rw-r--r-- | usr.bin/ssh/ssh-keysign/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keysign/Makefile b/usr.bin/ssh/ssh-keysign/Makefile index 0627c0bf906..31a8bb1a987 100644 --- a/usr.bin/ssh/ssh-keysign/Makefile +++ b/usr.bin/ssh/ssh-keysign/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.7 2013/05/16 09:12:31 dtucker Exp $ +# $OpenBSD: Makefile,v 1.8 2013/07/02 13:32:38 markus Exp $ .PATH: ${.CURDIR}/.. @@ -15,4 +15,4 @@ SRCS= ssh-keysign.c readconf.c roaming_dummy.c .include <bsd.prog.mk> LDADD+= -lcrypto -lutil -lz -DPADD+= ${LIBCRYPTO} ${LIBZ} +DPADD+= ${LIBCRYPTO} ${LIBUTIL} ${LIBZ} |