diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2016-01-07 23:26:16 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2016-01-07 23:26:16 +0000 |
commit | 012c5f2da94bb4316a139c3c9064323b5eb5e147 (patch) | |
tree | 82b5b501cb92c3e7781f9c455415e7dc6d196e57 /lib | |
parent | 235e0ef9f764cd597391e582c9360a518032cd4e (diff) | |
download | FreeBSD-src-012c5f2da94bb4316a139c3c9064323b5eb5e147.zip FreeBSD-src-012c5f2da94bb4316a139c3c9064323b5eb5e147.tar.gz |
MFC r291941:
Replace unneeded manual dependency on header by adding it to SRCS.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libpam/modules/pam_ssh/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libpam/modules/pam_ssh/Makefile b/lib/libpam/modules/pam_ssh/Makefile index 886610a..dc86e06 100644 --- a/lib/libpam/modules/pam_ssh/Makefile +++ b/lib/libpam/modules/pam_ssh/Makefile @@ -12,6 +12,7 @@ SRCS+= roaming_dummy.c WARNS?= 3 CFLAGS+= -I${SSHDIR} -include ssh_namespace.h +SRCS+= ssh_namespace.h DPADD= ${LIBSSH} ${LIBCRYPTO} ${LIBCRYPT} LDADD= -lssh -lcrypto -lcrypt @@ -20,5 +21,3 @@ USEPRIVATELIB= ssh .include <bsd.lib.mk> .PATH: ${SSHDIR} - -${OBJS} ${POBJS} ${SOBJS}: ssh_namespace.h |