aboutsummaryrefslogtreecommitdiff
path: root/lib/Driver/ToolChains.cpp
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2011-05-24 07:51:17 +0000
committerChandler Carruth <chandlerc@gmail.com>2011-05-24 07:51:17 +0000
commitf0b60ecc824af1e99e4288a8dcc11b22e2a6ea5e (patch)
tree19118f858101967c6513adb78cb3131a689dbcfc /lib/Driver/ToolChains.cpp
parent1f8f2d52ff3712770a49f318a687b0c8b0ada9d0 (diff)
Fix a bug in the most recent openSUSE support patch.
This patch also by Ismail Donmez. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@131958 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/ToolChains.cpp')
-rw-r--r--lib/Driver/ToolChains.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Driver/ToolChains.cpp b/lib/Driver/ToolChains.cpp
index 1675351fe0..42ab3a4efe 100644
--- a/lib/Driver/ToolChains.cpp
+++ b/lib/Driver/ToolChains.cpp
@@ -1468,7 +1468,7 @@ Linux::Linux(const HostInfo &Host, const llvm::Triple &Triple)
ExtraOpts.push_back("--build-id");
if (IsOpenSuse(Distro))
- ExtraOpts.push_back("--dynamic-tags");
+ ExtraOpts.push_back("--enable-new-dtags");
if (Distro == ArchLinux)
Lib = "lib";