Fix the CXX_INCLUDE_ROOT case that was out of date with ScanLibDirForGCCTriple.

llvm-svn: 141980
This commit is contained in:
Rafael Espindola 2011-10-14 19:50:08 +00:00
parent ed456eb0a9
commit c0b9791b63
1 changed files with 1 additions and 1 deletions

View File

@ -1575,7 +1575,7 @@ public:
GccInstallPath.append(CXX_INCLUDE_ARCH); GccInstallPath.append(CXX_INCLUDE_ARCH);
GccInstallPath.append("/"); GccInstallPath.append("/");
GccInstallPath.append(Version); GccInstallPath.append(Version);
GccParentLibPath = GccInstallPath + "/../../../.."; GccParentLibPath = GccInstallPath + "/../../..";
IsValid = true; IsValid = true;
return; return;
} }