svn commit: r337928 - head/secure/usr.sbin/sshd

Bryan Drewery bdrewery at FreeBSD.org
Thu Aug 16 19:48:08 UTC 2018


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
 


More information about the svn-src-all mailing list