summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2011-11-07 10:43:59 +0000
committerChandler Carruth <chandlerc@gmail.com>2011-11-07 10:43:59 +0000
commite7dad13dba072c3d055fe9b81233447689dae5af (patch)
tree9a6ce79d459349bd1cc884b613a30b750eac4d8b
parente1fe38196886e9be61ca10905bf27408c8662e55 (diff)
Merging r143897:
------------------------------------------------------------------------ r143897 | chandlerc | 2011-11-06 15:10:49 -0800 (Sun, 06 Nov 2011) | 2 lines Remove an old OpenSUSE hack that is no longer needed -- it is exactly the same as a directory added further down in the new logic. ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_30@143954 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Driver/ToolChains.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/Driver/ToolChains.cpp b/lib/Driver/ToolChains.cpp
index c649551ad1..78223a9ba2 100644
--- a/lib/Driver/ToolChains.cpp
+++ b/lib/Driver/ToolChains.cpp
@@ -1848,11 +1848,6 @@ Linux::Linux(const HostInfo &Host, const llvm::Triple &Triple)
if (GCCInstallation.isValid()) {
const std::string &LibPath = GCCInstallation.getParentLibPath();
const std::string &GccTriple = GCCInstallation.getTriple();
- // FIXME: This OpenSuse-specific path shouldn't be needed any more, but
- // I don't want to remove it without finding someone to test.
- if (IsOpenSuse(Distro) && Is32Bits)
- Paths.push_back(LibPath + "/../" + GccTriple + "/lib/../lib");
-
addPathIfExists(GCCInstallation.getInstallPath() + Suffix, Paths);
addPathIfExists(LibPath + "/../" + GccTriple + "/lib/../" + Multilib,
Paths);