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 08BFF138334 for ; Mon, 16 Dec 2019 09:39:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D48FE086A; Mon, 16 Dec 2019 09:39:45 +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 342B2E086A for ; Mon, 16 Dec 2019 09:39:45 +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 2E5B534D862 for ; Mon, 16 Dec 2019 09:39:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4F554906 for ; Mon, 16 Dec 2019 09:39:42 +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: <1576489178.bafaf294160c9435ae474ba551e2e5744c0423e2.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/iscan/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/iscan/iscan-2.30.4.2.ebuild X-VCS-Directories: media-gfx/iscan/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: bafaf294160c9435ae474ba551e2e5744c0423e2 X-VCS-Branch: master Date: Mon, 16 Dec 2019 09:39:42 +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: 7b3f6e63-3f5d-434a-900b-81ad96f9cee3 X-Archives-Hash: 67e3822b1ea052d38cc88f870fc158b4 commit: bafaf294160c9435ae474ba551e2e5744c0423e2 Author: Michał Górny gentoo org> AuthorDate: Mon Dec 16 09:38:34 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Dec 16 09:39:38 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bafaf294 media-gfx/iscan: Remove humongous relative symlink hack The gimp plugin directory path is predictable, we do not need to call realpath for it. Signed-off-by: Michał Górny gentoo.org> media-gfx/iscan/iscan-2.30.4.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-gfx/iscan/iscan-2.30.4.2.ebuild b/media-gfx/iscan/iscan-2.30.4.2.ebuild index 90d8c1c878c..4be72d18128 100644 --- a/media-gfx/iscan/iscan-2.30.4.2.ebuild +++ b/media-gfx/iscan/iscan-2.30.4.2.ebuild @@ -126,7 +126,7 @@ src_install() { done if [[ "/plug-ins" != "${gimpplugindir}" ]]; then dodir ${gimpplugindir} - dosym $(realpath -s --relative-to="${gimpplugindir}" "${EPREFIX}/usr/bin/iscan" || die) "${gimpplugindir}"/iscan + dosym ../../../../bin/iscan "${gimpplugindir}"/iscan else ewarn "No idea where to find the gimp plugin directory" fi