From owner-svn-src-projects@freebsd.org Thu Sep 1 20:23:50 2016 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E3E6EBCC1E8 for ; Thu, 1 Sep 2016 20:23:50 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B4183BEC; Thu, 1 Sep 2016 20:23:50 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u81KNnmv044117; Thu, 1 Sep 2016 20:23:49 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u81KNnXH044116; Thu, 1 Sep 2016 20:23:49 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201609012023.u81KNnXH044116@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Thu, 1 Sep 2016 20:23:49 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r305237 - projects/clang390-import/share/mk X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Sep 2016 20:23:51 -0000 Author: bdrewery Date: Thu Sep 1 20:23:49 2016 New Revision: 305237 URL: https://svnweb.freebsd.org/changeset/base/305237 Log: DIRDEPS_BUILD: Clang libraries now have nested directories/objects in OBJDIR. These nested directories are not build targets. They just map back to lib/clang/lib{clang,llvm,llvmminimal,lldb}. Avoid adding these nested directories into Makefile.depend. Sponsored by: EMC / Isilon Storage Division Modified: projects/clang390-import/share/mk/local.gendirdeps.mk Modified: projects/clang390-import/share/mk/local.gendirdeps.mk ============================================================================== --- projects/clang390-import/share/mk/local.gendirdeps.mk Thu Sep 1 20:01:38 2016 (r305236) +++ projects/clang390-import/share/mk/local.gendirdeps.mk Thu Sep 1 20:23:49 2016 (r305237) @@ -13,6 +13,9 @@ GENDIRDEPS_FILTER+= \ Ntargets/pseudo/stage* \ Ntools/* +# Clang has nested directories in its OBJDIR. +GENDIRDEPS_FILTER+= C,(lib/clang/lib[^/]*)/.*,\1, + # Exclude toolchain which is handled special. .if ${RELDIR:Mtargets*} == "" .if ${RELDIR:Nusr.bin/clang/*:Ngnu/usr.bin/cc/*:Nlib/clang*} != ""