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 C6313139083 for ; Thu, 14 Dec 2017 14:53:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F36B0E0F86; Thu, 14 Dec 2017 14:53:52 +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 CE62FE0F86 for ; Thu, 14 Dec 2017 14:53:52 +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 24F9533BF01 for ; Thu, 14 Dec 2017 14:53:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F3B2AE1D for ; Thu, 14 Dec 2017 14:53:49 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1513263217.f2acf983ac1f7db57e63f07e9e2efac1a88be5f3.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/grub/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-boot/grub/grub-0.97-r18.ebuild X-VCS-Directories: sys-boot/grub/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: f2acf983ac1f7db57e63f07e9e2efac1a88be5f3 X-VCS-Branch: master Date: Thu, 14 Dec 2017 14:53:49 +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: ce689afa-8cb8-469d-a5b8-ea6a203524b8 X-Archives-Hash: 23f367aadd35e14e25f3ecc0e46a6ea0 commit: f2acf983ac1f7db57e63f07e9e2efac1a88be5f3 Author: Thomas Deutschmann gentoo org> AuthorDate: Thu Dec 14 14:53:25 2017 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Thu Dec 14 14:53:37 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2acf983 sys-boot/grub: Adjust sanity check message Package-Manager: Portage-2.3.18, Repoman-2.3.6 sys-boot/grub/grub-0.97-r18.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-boot/grub/grub-0.97-r18.ebuild b/sys-boot/grub/grub-0.97-r18.ebuild index a45c190509a..eb820606143 100644 --- a/sys-boot/grub/grub-0.97-r18.ebuild +++ b/sys-boot/grub/grub-0.97-r18.ebuild @@ -172,13 +172,13 @@ src_test() { } src_install() { - _stage2_file="${S}/stage2/stage2" + local _stage2_file="${S}/stage2/stage2" if [[ -f "${_stage2_file}" ]]; then local _stage2_filesize=$(stat -c '%s' "${_stage2_file}" 2>/dev/null) if [[ -z "${_stage2_filesize}" ]]; then ewarn "Sanity check skipped -- 'stat' returned nothing" elif [[ "${_stage2_filesize}" -gt 1000000 ]]; then - eerror "Sanity check failed: stage2 (${_stage2_file}) is more than 1MB large (${_stage2_filesize} bytes)!" + eerror "Sanity check failed: stage2 (${_stage2_file}) is larger than 1MB (${_stage2_filesize} bytes)!" eerror "Please check your CFLAGS and/or file a bug report at https://bugs.gentoo.org." die "stage2 sanity check failed" else