ae811c1f2a
* Fix problems found by PVS-Studio * More AVX fixes * Many C++ fixes - Add assume-opensuse.patch to remove dependency on openSUSE-release OBS-URL: https://build.opensuse.org/package/show/devel:tools:compiler/llvm?expand=0&rev=60
13 lines
400 B
Diff
13 lines
400 B
Diff
--- tools/clang/lib/Driver/ToolChains.cpp 2011-08-12 11:19:35.000000000 +0200
|
|
+++ tools/clang/lib/Driver/ToolChains.cpp 2011-08-12 12:10:47.733446958 +0200
|
|
@@ -1346,8 +1346,7 @@
|
|
}
|
|
|
|
static bool IsOpenSuse(enum LinuxDistro Distro) {
|
|
- return Distro == OpenSuse11_3 || Distro == OpenSuse11_4 ||
|
|
- Distro == OpenSuse12_1;
|
|
+ return true;
|
|
}
|
|
|
|
static bool IsDebian(enum LinuxDistro Distro) {
|