diff options
author | 2011-04-21 09:24:25 +0000 | |
---|---|---|
committer | 2011-04-21 09:24:25 +0000 | |
commit | 472a3bcade1d30e656b9cf65dd0b7ab9f609a306 (patch) | |
tree | 5e9fe23b57e40d31f22ff93b5821238043303eeb /sys-devel/llvm/llvm-9999.ebuild | |
parent | media-gfx/blender: Integrate patch for CVE-2009-3850 (bug #293130) (diff) | |
download | gentoo-2-472a3bcade1d30e656b9cf65dd0b7ab9f609a306.tar.gz gentoo-2-472a3bcade1d30e656b9cf65dd0b7ab9f609a306.tar.bz2 gentoo-2-472a3bcade1d30e656b9cf65dd0b7ab9f609a306.zip |
Fix broken reference that I missed yesterday
(Portage version: 2.2.01.18091-prefix/cvs/SunOS i386)
Diffstat (limited to 'sys-devel/llvm/llvm-9999.ebuild')
-rw-r--r-- | sys-devel/llvm/llvm-9999.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-devel/llvm/llvm-9999.ebuild b/sys-devel/llvm/llvm-9999.ebuild index b3235a6f3dad..91451fd5beb0 100644 --- a/sys-devel/llvm/llvm-9999.ebuild +++ b/sys-devel/llvm/llvm-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-9999.ebuild,v 1.11 2011/04/20 18:08:52 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-9999.ebuild,v 1.12 2011/04/21 09:24:25 grobian Exp $ EAPI="3" inherit subversion eutils multilib toolchain-funcs @@ -169,7 +169,7 @@ src_install() { for f in "${ED}"/usr/bin/* "${ED}"/usr/lib/${PN}/libLTO.dylib ; do ebegin "fixing install_name reference to libLLVM-${PV}.dylib of ${f##*/}" install_name_tool \ - -change "${S}"/Release/lib/libLLVM-${PV}.dylib \ + -change "@executable_path/../lib/libLLVM-${PV}.dylib" \ "${EPREFIX}"/usr/lib/${PN}/libLLVM-${PV}.dylib \ "${f}" eend $? |