Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 19 May 2019 19:42:36 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r347978 - head/tools/build/mk
Message-ID:  <201905191942.x4JJgaWd065397@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905191942.x4JJgaWd065397>