From: Rafael Espindola Date: Fri, 14 Oct 2011 19:50:08 +0000 (+0000) Subject: Fix the CXX_INCLUDE_ROOT case that was out of date with ScanLibDirForGCCTriple. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f886d6f5ec01e521afc39e967f9ff614c4e1c8e7;p=clang Fix the CXX_INCLUDE_ROOT case that was out of date with ScanLibDirForGCCTriple. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@141980 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Driver/ToolChains.cpp b/lib/Driver/ToolChains.cpp index 0fa25fb813..273f4b4bf1 100644 --- a/lib/Driver/ToolChains.cpp +++ b/lib/Driver/ToolChains.cpp @@ -1575,7 +1575,7 @@ public: GccInstallPath.append(CXX_INCLUDE_ARCH); GccInstallPath.append("/"); GccInstallPath.append(Version); - GccParentLibPath = GccInstallPath + "/../../../.."; + GccParentLibPath = GccInstallPath + "/../../.."; IsValid = true; return; }