Date: Thu, 16 Aug 2018 19:48:07 +0000 (UTC) From: Bryan Drewery <bdrewery@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r337928 - head/secure/usr.sbin/sshd Message-ID: <201808161948.w7GJm7ZM081006@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bdrewery Date: Thu Aug 16 19:48:07 2018 New Revision: 337928 URL: https://svnweb.freebsd.org/changeset/base/337928 Log: Fix build after r337852: Don't rebuild moduli based on unrelated moduli.c Reported by: many, delphij (moduli.c issue) Modified: head/secure/usr.sbin/sshd/Makefile Modified: head/secure/usr.sbin/sshd/Makefile ============================================================================== --- head/secure/usr.sbin/sshd/Makefile Thu Aug 16 19:39:02 2018 (r337927) +++ head/secure/usr.sbin/sshd/Makefile Thu Aug 16 19:48:07 2018 (r337928) @@ -28,6 +28,9 @@ MAN= sshd.8 sshd_config.5 CFLAGS+=-I${SSHDIR} -include ssh_namespace.h SRCS+= ssh_namespace.h +# Don't rebuild based on moduli.c +moduli: .MADE + # pam should always happen before ssh here for static linking LIBADD= pam ssh util
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808161948.w7GJm7ZM081006>