From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1SRv2r-0003sb-Aw for garchives@archives.gentoo.org; Wed, 09 May 2012 00:46:21 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C64CCE062B; Wed, 9 May 2012 00:46:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 972D0E062B for ; Wed, 9 May 2012 00:46:13 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 088B41B404B for ; Wed, 9 May 2012 00:46:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 961BAE542D for ; Wed, 9 May 2012 00:46:10 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1336524353.476f99337da69662660bfe2a0406b9ac5b4678c4.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/isolated-functions.sh X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 476f99337da69662660bfe2a0406b9ac5b4678c4 X-VCS-Branch: master Date: Wed, 9 May 2012 00:46:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 07038c7f-2398-4612-83c7-e4a118c6c10a X-Archives-Hash: ceee9d2854255690ceae67695f765689 commit: 476f99337da69662660bfe2a0406b9ac5b4678c4 Author: Zac Medico gentoo org> AuthorDate: Wed May 9 00:45:53 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed May 9 00:45:53 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D476f9933 die: fix ${T}/build.log{,.gz} message --- bin/isolated-functions.sh | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/isolated-functions.sh b/bin/isolated-functions.sh index 9b91e6b..dbf988b 100644 --- a/bin/isolated-functions.sh +++ b/bin/isolated-functions.sh @@ -220,8 +220,8 @@ die() { eerror "The complete build log is located at '${PORTAGE_LOG_FILE}'." if [[ ${PORTAGE_LOG_FILE} !=3D ${T}/* ]] ; then # Display path to symlink in ${T}, as requested in bug #412865. - local log_ext=3D${PORTAGE_LOG_FILE##*/} - log_ext=3D${log_ext#*.} + local log_ext=3Dlog + [[ ${PORTAGE_LOG_FILE} !=3D *.log ]] && log_ext+=3D.${PORTAGE_LOG_FIL= E##*.} eerror "For convenience, a symlink to the build log is located at '${= T}/build.${log_ext}'." fi fi