Date: Sat, 26 Feb 2011 23:07:43 +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: r219073 - head/contrib/llvm/tools/clang/lib/Driver Message-ID: <201102262307.p1QN7hJt000941@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dim Date: Sat Feb 26 23:07:43 2011 New Revision: 219073 URL: http://svn.freebsd.org/changeset/base/219073 Log: Remove getDriver().Dir + /../libexec and /usr/libexec from clang's program paths. Unlike gcc, clang has no executables in libexec. Modified: head/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp Modified: head/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp ============================================================================== --- head/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp Sat Feb 26 23:05:47 2011 (r219072) +++ head/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp Sat Feb 26 23:07:43 2011 (r219073) @@ -1108,8 +1108,6 @@ FreeBSD::FreeBSD(const HostInfo &Host, c llvm::Triple::x86_64) Lib32 = true; - getProgramPaths().push_back(getDriver().Dir + "/../libexec"); - getProgramPaths().push_back("/usr/libexec"); if (Lib32) { getFilePaths().push_back(CLANG_PREFIX "/usr/lib32"); } else {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201102262307.p1QN7hJt000941>