summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2013-07-30 23:12:27 +0000
committerMichał Górny <mgorny@gentoo.org>2013-07-30 23:12:27 +0000
commitdb3909a49f130b826a699218c1ef1a085c518537 (patch)
tree99ea2a0d28c9eb91d732beac05fd53d72bb217e4 /sys-devel
parentupdate emul blocker so that it is stacked for baselibs -r3 (diff)
downloadgentoo-2-db3909a49f130b826a699218c1ef1a085c518537.tar.gz
gentoo-2-db3909a49f130b826a699218c1ef1a085c518537.tar.bz2
gentoo-2-db3909a49f130b826a699218c1ef1a085c518537.zip
Fix path to libprofile_rt, bug #478816.
(Portage version: 2.2.0_alpha191/cvs/Linux x86_64, signed Manifest commit with key 9627F456F9DA7643!)
Diffstat (limited to 'sys-devel')
-rw-r--r--sys-devel/llvm/ChangeLog6
-rw-r--r--sys-devel/llvm/files/clang-3.3-gentoo-install.patch2
2 files changed, 6 insertions, 2 deletions
diff --git a/sys-devel/llvm/ChangeLog b/sys-devel/llvm/ChangeLog
index 119a0aac1fee..4a65356a1a08 100644
--- a/sys-devel/llvm/ChangeLog
+++ b/sys-devel/llvm/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-devel/llvm
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v 1.122 2013/07/30 23:10:46 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v 1.123 2013/07/30 23:12:27 mgorny Exp $
+
+ 30 Jul 2013; Michał Górny <mgorny@gentoo.org>
+ files/clang-3.3-gentoo-install.patch:
+ Fix path to libprofile_rt, bug #478816.
30 Jul 2013; Alexis Ballier <aballier@gentoo.org> llvm-3.3-r1.ebuild,
llvm-9999-r1.ebuild:
diff --git a/sys-devel/llvm/files/clang-3.3-gentoo-install.patch b/sys-devel/llvm/files/clang-3.3-gentoo-install.patch
index b8291f21dc30..f7bcfc63f69b 100644
--- a/sys-devel/llvm/files/clang-3.3-gentoo-install.patch
+++ b/sys-devel/llvm/files/clang-3.3-gentoo-install.patch
@@ -18,7 +18,7 @@ index e014980..6e60513 100644
// not supported by old linkers.
std::string ProfileRT =
- std::string(TC.getDriver().Dir) + "/../lib/libprofile_rt.a";
-+ std::string(TC.getDriver().Dir) + "/../@libdir@/llvm/libprofile_rt.a";
++ "-l:llvm/libprofile_rt.a";
CmdArgs.push_back(Args.MakeArgString(ProfileRT));
}