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 981A01382C5 for ; Sat, 10 Mar 2018 13:07:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C68B5E081B; Sat, 10 Mar 2018 13:07:10 +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 A24A9E081B for ; Sat, 10 Mar 2018 13:07:10 +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 6E216335C2A for ; Sat, 10 Mar 2018 13:07:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 98205244 for ; Sat, 10 Mar 2018 13:07:07 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1520687086.21a0f5a3d83084436e6f6b66114cc5c593528866.slyfox@gentoo> Subject: [gentoo-commits] proj/crossdev:master commit in: wrappers/ X-VCS-Repository: proj/crossdev X-VCS-Files: wrappers/cross-emerge X-VCS-Directories: wrappers/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 21a0f5a3d83084436e6f6b66114cc5c593528866 X-VCS-Branch: master Date: Sat, 10 Mar 2018 13:07:07 +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: b8d7af2e-6a2a-4d18-a167-a14081ec4cf5 X-Archives-Hash: 70b755f09904c116bcdccd2995f8195d commit: 21a0f5a3d83084436e6f6b66114cc5c593528866 Author: Sergei Trofimovich gentoo org> AuthorDate: Sat Mar 10 13:04:46 2018 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sat Mar 10 13:04:46 2018 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=21a0f5a3 cross-emerge: tweak EPREFIX handling to be POSIX sh, bug #650100 Reported and fixed by Scall. Reported-by: Scall Fixed-by: Scall Closes: https://bugs.gentoo.org/650100 Signed-off-by: Sergei Trofimovich gentoo.org> wrappers/cross-emerge | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrappers/cross-emerge b/wrappers/cross-emerge index fb98951..d775b90 100755 --- a/wrappers/cross-emerge +++ b/wrappers/cross-emerge @@ -10,7 +10,7 @@ fi export CHOST EPREFIX="@GENTOO_PORTAGE_EPREFIX@" -if [[ ${EPREFIX} == "@"GENTOO_PORTAGE_EPREFIX"@" ]] ; then +if [ ${EPREFIX} = "@"GENTOO_PORTAGE_EPREFIX"@" ] ; then EPREFIX="" fi