commit: f2acf983ac1f7db57e63f07e9e2efac1a88be5f3
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 14 14:53:25 2017 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> 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