Skip to content

Commit 02591c2

Browse files
committed
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. ------------------------------------------------------------------------ llvm-svn: 143954
1 parent ce9034f commit 02591c2

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

clang/lib/Driver/ToolChains.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1848,11 +1848,6 @@ Linux::Linux(const HostInfo &Host, const llvm::Triple &Triple)
18481848
if (GCCInstallation.isValid()) {
18491849
const std::string &LibPath = GCCInstallation.getParentLibPath();
18501850
const std::string &GccTriple = GCCInstallation.getTriple();
1851-
// FIXME: This OpenSuse-specific path shouldn't be needed any more, but
1852-
// I don't want to remove it without finding someone to test.
1853-
if (IsOpenSuse(Distro) && Is32Bits)
1854-
Paths.push_back(LibPath + "/../" + GccTriple + "/lib/../lib");
1855-
18561851
addPathIfExists(GCCInstallation.getInstallPath() + Suffix, Paths);
18571852
addPathIfExists(LibPath + "/../" + GccTriple + "/lib/../" + Multilib,
18581853
Paths);

0 commit comments

Comments
 (0)