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

Ed Maste emaste at FreeBSD.org
Fri May 1 16:37:41 UTC 2015


Author: emaste
Date: Fri May  1 16:37:40 2015
New Revision: 282303
URL: https://svnweb.freebsd.org/changeset/base/282303

Log:
  OptionalObsoleteFiles: don't remove c++filt when using ELF Tool Chain
  
  c++filt is listed here twice, for MK_CXX == no and MK_GCC == no, but
  r282285 only caught one of them.

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

Modified: head/tools/build/mk/OptionalObsoleteFiles.inc
==============================================================================
--- head/tools/build/mk/OptionalObsoleteFiles.inc	Fri May  1 16:31:54 2015	(r282302)
+++ head/tools/build/mk/OptionalObsoleteFiles.inc	Fri May  1 16:37:40 2015	(r282303)
@@ -1722,7 +1722,9 @@ OLD_FILES+=usr/share/man/man8/unstr.8.gz
 .endif
 
 .if ${MK_GCC} == no
+.if ${MK_ELFTOOLCHAIN_TOOLS} == no
 OLD_FILES+=usr/bin/c++filt
+.endif
 OLD_FILES+=usr/bin/g++
 OLD_FILES+=usr/bin/gcc
 OLD_FILES+=usr/bin/gcov


More information about the svn-src-head mailing list