diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2011-10-14 19:50:08 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2011-10-14 19:50:08 +0000 |
commit | f886d6f5ec01e521afc39e967f9ff614c4e1c8e7 (patch) | |
tree | b3679de2f740280a00bd82817f87836c0de382b8 /lib/Driver/ToolChains.cpp | |
parent | 663b26a776c47a8609d767af72a7bac4745ce8ef (diff) |
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
Diffstat (limited to 'lib/Driver/ToolChains.cpp')
-rw-r--r-- | lib/Driver/ToolChains.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |