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 1Qm84Y-0004ce-HN for garchives@archives.gentoo.org; Wed, 27 Jul 2011 17:39:06 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9156D21C08A; Wed, 27 Jul 2011 17:38:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 639B421C08A for ; Wed, 27 Jul 2011 17:38:59 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D66C21B402C for ; Wed, 27 Jul 2011 17:38:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 07ECC8003D for ; Wed, 27 Jul 2011 17:38:58 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <02b72c6515a7772228ec5ab59bd0e470df326826.sping@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: /, defaults/ X-VCS-Repository: proj/genkernel X-VCS-Files: ChangeLog defaults/initrd.scripts X-VCS-Directories: / defaults/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 02b72c6515a7772228ec5ab59bd0e470df326826 Date: Wed, 27 Jul 2011 17:38:58 +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: X-Archives-Hash: 4501488206ba064dd71d7581afed9c35 commit: 02b72c6515a7772228ec5ab59bd0e470df326826 Author: Sebastian Pipping pipping org> AuthorDate: Wed Jul 27 17:38:15 2011 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Wed Jul 27 17:38:15 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/genkernel.git= ;a=3Dcommit;h=3D02b72c65 Fix display of seconds waiting (bug #376575) --- ChangeLog | 5 +++++ defaults/initrd.scripts | 2 +- 2 files changed, 6 insertions(+), 1 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4c24c6e..31e9aae 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,11 @@ # Distributed under the GPL v2 # $Id$ =20 + 27 Jul 2011; Sebastian Pipping defaults/initrd.scri= pts: + Fix display of seconds waiting (bug #376575) + + Thanks to Richard Scott + 26 Jul 2011; Robin H. Johnson gen_arch.sh: Bug #376467: fix kernel version checks for 3.0 kernel. =20 diff --git a/defaults/initrd.scripts b/defaults/initrd.scripts index b71d30a..51ebcce 100755 --- a/defaults/initrd.scripts +++ b/defaults/initrd.scripts @@ -922,7 +922,7 @@ sdelay() { # Sleep a specific number of seconds if SDELAY is set if [ "${SDELAY}" ] then - good_msg 'Waiting ${SDELAY} seconds...' + good_msg "Waiting ${SDELAY} seconds..." sleep ${SDELAY} else good_msg 'Hint: Use parameter scandelay[=3Dseconds] if you need waitin= g here'