diff options
author | 2016-01-22 09:15:50 +0100 | |
---|---|---|
committer | 2016-01-22 09:15:50 +0100 | |
commit | 1219b4dd29cdb183677c9e15a8d766a383f80770 (patch) | |
tree | ddcd97c7ebdd9251ebae40c6fe20f475c4dda55d | |
parent | sci-libs/clblas: Version bump to 2.10 (diff) | |
download | sci-1219b4dd29cdb183677c9e15a8d766a383f80770.tar.gz sci-1219b4dd29cdb183677c9e15a8d766a383f80770.tar.bz2 sci-1219b4dd29cdb183677c9e15a8d766a383f80770.zip |
sci-chemistry/ambertools: Fix symlinken in bin dir
Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec@gentoo.org>
-rw-r--r-- | sci-chemistry/ambertools/ambertools-12_p38-r1.ebuild (renamed from sci-chemistry/ambertools/ambertools-12_p38.ebuild) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sci-chemistry/ambertools/ambertools-12_p38.ebuild b/sci-chemistry/ambertools/ambertools-12_p38-r1.ebuild index 1c907c4ab..e6beea259 100644 --- a/sci-chemistry/ambertools/ambertools-12_p38.ebuild +++ b/sci-chemistry/ambertools/ambertools-12_p38-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -144,8 +144,8 @@ src_install() { # Make symlinks untill binpath for amber will be fixed dodir /usr/share/${PN}/bin cd "${ED}/usr/bin" || die - for x in * - do dosym /usr/bin/${x} ../share/${PN}/bin/${x} + for x in *; do + dosym ../../../bin/${x} /usr/share/${PN}/bin/${x} done cd "${S}" || die |