From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B0ED3138350 for ; Fri, 31 Jan 2020 08:08:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E09D4E0814; Fri, 31 Jan 2020 08:08:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B4903E07F9 for ; Fri, 31 Jan 2020 08:08:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 78CD734E613 for ; Fri, 31 Jan 2020 08:08:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A32457B for ; Fri, 31 Jan 2020 08:08:04 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1580458078.10495bec56ca604c48c1ca7e09e325a3d0e5a534.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/atokx3/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/atokx3/atokx3-3.0.0-r12.ebuild X-VCS-Directories: app-i18n/atokx3/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 10495bec56ca604c48c1ca7e09e325a3d0e5a534 X-VCS-Branch: master Date: Fri, 31 Jan 2020 08:08:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 04cc6550-a645-4dd2-a9b2-dc124ec24aab X-Archives-Hash: 609e871b34d23e5561116b4443533976 commit: 10495bec56ca604c48c1ca7e09e325a3d0e5a534 Author: Michał Górny gentoo org> AuthorDate: Fri Jan 31 07:49:26 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jan 31 08:07:58 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10495bec app-i18n/atokx3: Fix AbsoluteSymlink Signed-off-by: Michał Górny gentoo.org> app-i18n/atokx3/atokx3-3.0.0-r12.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app-i18n/atokx3/atokx3-3.0.0-r12.ebuild b/app-i18n/atokx3/atokx3-3.0.0-r12.ebuild index 4cc9cf8691c..c1178520384 100644 --- a/app-i18n/atokx3/atokx3-3.0.0-r12.ebuild +++ b/app-i18n/atokx3/atokx3-3.0.0-r12.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -173,13 +173,13 @@ src_install() { if [[ "${lib32}" != "${lib64}" ]] ; then local f for f in xiiimp.so xiiimp.a iiim-xbe xiiimp.so.2 xiiimp.so.2.0.0 iiimd-watchdog xiiimp.la ; do - dosym "${EPREFIX}/usr/${lib32}/iiim/${f}" "/usr/${lib64}/iiim/${f}" + dosym "../../${lib32}/iiim/${f}" "/usr/${lib64}/iiim/${f}" done for f in ${PN}aux.so ${PN}.so ; do - dosym "${EPREFIX}/usr/${lib32}/iiim/le/${PN}/${f}" "/usr/${lib64}/iiim/le/${PN}/${f}" + dosym "../../../../${lib32}/iiim/le/${PN}/${f}" "/usr/${lib64}/iiim/le/${PN}/${f}" done - dosym "${EPREFIX}/usr/${lib64}/iiim/le/${PN}/64" "/usr/${lib32}/iiim/le/${PN}/64" - dosym "${EPREFIX}/usr/${lib64}/iiim/le/${PN}/64" "/usr/${lib32}/iiim/le/${PN}/amd64" + dosym "../../../../${lib64}/iiim/le/${PN}/64" "/usr/${lib32}/iiim/le/${PN}/64" + dosym "../../../../${lib64}/iiim/le/${PN}/64" "/usr/${lib32}/iiim/le/${PN}/amd64" fi fi