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 AF24E1382C5 for ; Sun, 18 Feb 2018 17:11:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A0CA4E0CCC; Sun, 18 Feb 2018 17:11:24 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 797C5E0CCC for ; Sun, 18 Feb 2018 17:11:24 +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 46612335C4D for ; Sun, 18 Feb 2018 17:11:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CB8C7230 for ; Sun, 18 Feb 2018 17:11:19 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1518973851.7b4a28d2073987cb54f3620f6aeccf1f635c0e8a.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/sane-frontends/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/sane-frontends/sane-frontends-1.0.14-r2.ebuild X-VCS-Directories: media-gfx/sane-frontends/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 7b4a28d2073987cb54f3620f6aeccf1f635c0e8a X-VCS-Branch: master Date: Sun, 18 Feb 2018 17:11:19 +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-Archives-Salt: 9eab168b-7f31-4d73-9579-d712a69b7ad7 X-Archives-Hash: 8119fb6c7f522ed2843a34d18039e397 commit: 7b4a28d2073987cb54f3620f6aeccf1f635c0e8a Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Feb 18 17:08:08 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Feb 18 17:10:51 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b4a28d2 media-gfx/sane-frontends: Double brackets Package-Manager: Portage-2.3.24, Repoman-2.3.6 media-gfx/sane-frontends/sane-frontends-1.0.14-r2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-gfx/sane-frontends/sane-frontends-1.0.14-r2.ebuild b/media-gfx/sane-frontends/sane-frontends-1.0.14-r2.ebuild index 474d18045d3..80bdaee930f 100644 --- a/media-gfx/sane-frontends/sane-frontends-1.0.14-r2.ebuild +++ b/media-gfx/sane-frontends/sane-frontends-1.0.14-r2.ebuild @@ -35,13 +35,13 @@ src_install() { emake DESTDIR="${D}" install if use gimp; then for gimptool in gimptool gimptool-2.0; do - if [ -x /usr/bin/${gimptool} ]; then + if [[ -x /usr/bin/${gimptool} ]]; then einfo "Setting plugin link for GIMP version $(/usr/bin/${gimptool} --version)" gimpplugindir=$(/usr/bin/${gimptool} --gimpplugindir)/plug-ins break fi done - if [ "/plug-ins" != "${gimpplugindir}" ]; then + if [[ "/plug-ins" != "${gimpplugindir}" ]]; then dodir ${gimpplugindir} dosym xscanimage ${gimpplugindir}/xscanimage else