Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 6 Sep 2013 20:46:08 +0000 (UTC)
From:      David Chisnall <theraven@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r255325 - head/tools/build/mk
Message-ID:  <201309062046.r86Kk8pp072509@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: theraven
Date: Fri Sep  6 20:46:07 2013
New Revision: 255325
URL: http://svnweb.freebsd.org/changeset/base/255325

Log:
  Don't delete c++filt when doing a make delete-old if GCC is not built but
  C++ is.

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

Modified: head/tools/build/mk/OptionalObsoleteFiles.inc
==============================================================================
--- head/tools/build/mk/OptionalObsoleteFiles.inc	Fri Sep  6 20:42:14 2013	(r255324)
+++ head/tools/build/mk/OptionalObsoleteFiles.inc	Fri Sep  6 20:46:07 2013	(r255325)
@@ -1546,7 +1546,9 @@ OLD_FILES+=usr/share/man/man8/unstr.8.gz
 .endif
 
 .if ${MK_GCC} == no
+.if ${MK_CXX} == no
 OLD_FILES+=usr/bin/c++filt
+.endif
 OLD_FILES+=usr/bin/g++
 OLD_FILES+=usr/bin/gcc
 OLD_FILES+=usr/bin/gcov



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