diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-05-24 17:19:19 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-06-03 10:27:26 +0200 |
commit | c6a9cb4c53865c3f820768f0e9efd093215ac5fe (patch) | |
tree | c32d26dd2de4cf43faadde76b67084214274e062 /sys-devel/llvm | |
parent | sys-devel/llvm: Fix configure phase for 3.4.2-r100 (diff) | |
download | gentoo-c6a9cb4c53865c3f820768f0e9efd093215ac5fe.tar.gz gentoo-c6a9cb4c53865c3f820768f0e9efd093215ac5fe.tar.bz2 gentoo-c6a9cb4c53865c3f820768f0e9efd093215ac5fe.zip |
sys-devel/llvm: Fix CHOST symlinks for 3.4.2-r100
Diffstat (limited to 'sys-devel/llvm')
-rw-r--r-- | sys-devel/llvm/llvm-3.4.2-r100.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-devel/llvm/llvm-3.4.2-r100.ebuild b/sys-devel/llvm/llvm-3.4.2-r100.ebuild index bd41c339154d..30d4081c1af4 100644 --- a/sys-devel/llvm/llvm-3.4.2-r100.ebuild +++ b/sys-devel/llvm/llvm-3.4.2-r100.ebuild @@ -197,8 +197,8 @@ src_install() { if ! use clang; then rm "${WORKDIR}"/${PN}-3.4-manpages/clang.1 || die else - for tool in clang{,++}{,-${PV}} ; do - dosym /usr/bin/${tool} /usr/bin/${CHOST}-${tool} + for tool in clang{,++} ; do + dosym ${tool} /usr/bin/${CHOST}-${tool} done fi doman "${WORKDIR}"/${PN}-3.4-manpages/*.1 |