svn commit: r347978 - head/tools/build/mk

Dimitry Andric dim at FreeBSD.org
Sun May 19 19:42:37 UTC 2019


Author: dim
Date: Sun May 19 19:42:35 2019
New Revision: 347978
URL: https://svnweb.freebsd.org/changeset/base/347978

Log:
  Fix OptionalObsoleteFiles copy/paste mistake from r345236, which
  connected libomp to the build.  The comparison should not have been
  against ${MK_OPENSSH}, but against ${MK_OPENMP}, obviously.
  
  MFC after:	3 days

Modified:
  head/tools/build/mk/OptionalObsoleteFiles.inc

Modified: head/tools/build/mk/OptionalObsoleteFiles.inc
==============================================================================
--- head/tools/build/mk/OptionalObsoleteFiles.inc	Sun May 19 18:31:21 2019	(r347977)
+++ head/tools/build/mk/OptionalObsoleteFiles.inc	Sun May 19 19:42:35 2019	(r347978)
@@ -7749,7 +7749,7 @@ OLD_FILES+=usr/share/man/man8/smpquery.8.gz
 OLD_FILES+=usr/share/man/man8/vendstat.8.gz
 .endif
 
-.if ${MK_OPENSSH} == no
+.if ${MK_OPENMP} == no
 .if ${MK_GCC} == no
 OLD_FILES+=usr/include/omp.h
 .endif


More information about the svn-src-all mailing list