diff options
author | ru <ru@FreeBSD.org> | 2004-02-05 22:44:25 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-02-05 22:44:25 +0000 |
commit | 743cc6d00297660ac72c8a7b391b0048d5699479 (patch) | |
tree | 687ecea23d9cd395958695d4b6773b1cd2bafea1 /secure | |
parent | 5d21c38b892d54673b3a900d99c309419100136a (diff) | |
download | FreeBSD-src-743cc6d00297660ac72c8a7b391b0048d5699479.zip FreeBSD-src-743cc6d00297660ac72c8a7b391b0048d5699479.tar.gz |
Fixed style of DPADD and LDADD assignments as per style.Makefile(5).
Diffstat (limited to 'secure')
-rw-r--r-- | secure/libexec/sftp-server/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/secure/libexec/sftp-server/Makefile b/secure/libexec/sftp-server/Makefile index 6a112d0..b6bf897 100644 --- a/secure/libexec/sftp-server/Makefile +++ b/secure/libexec/sftp-server/Makefile @@ -5,8 +5,8 @@ SRCS= sftp-common.c sftp-server.c MAN= sftp-server.8 CFLAGS+=-I${SSHDIR} -DPADD+= ${LIBSSH} ${LIBCRYPT} ${LIBCRYPTO} ${LIBZ} -LDADD+= -lssh -lcrypt -lcrypto -lz +DPADD= ${LIBSSH} ${LIBCRYPT} ${LIBCRYPTO} ${LIBZ} +LDADD= -lssh -lcrypt -lcrypto -lz .include <bsd.prog.mk> |