diff options
author | Michael Januszewski <spock@gentoo.org> | 2008-09-21 16:32:34 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2008-09-21 16:32:34 +0000 |
commit | 01e7e24612df14f6390305f14e7856a3a2788909 (patch) | |
tree | 842661c5acde745fb39b0ffbdbe302f74ac72898 /media-gfx/splashutils/splashutils-1.5.4.2.ebuild | |
parent | alpha/ia64/sparc stable wrt #238249 (diff) | |
download | gentoo-2-01e7e24612df14f6390305f14e7856a3a2788909.tar.gz gentoo-2-01e7e24612df14f6390305f14e7856a3a2788909.tar.bz2 gentoo-2-01e7e24612df14f6390305f14e7856a3a2788909.zip |
Fix console=tty1 check to not allow invalid kernel command line options.
(Portage version: 2.2_rc8/cvs/Linux 2.6.27-rc6 x86_64)
Diffstat (limited to 'media-gfx/splashutils/splashutils-1.5.4.2.ebuild')
-rw-r--r-- | media-gfx/splashutils/splashutils-1.5.4.2.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/media-gfx/splashutils/splashutils-1.5.4.2.ebuild b/media-gfx/splashutils/splashutils-1.5.4.2.ebuild index c16ce4af4509..f65053bc2507 100644 --- a/media-gfx/splashutils/splashutils-1.5.4.2.ebuild +++ b/media-gfx/splashutils/splashutils-1.5.4.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.2.ebuild,v 1.4 2008/09/21 07:16:19 solar Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.2.ebuild,v 1.5 2008/09/21 16:32:34 spock Exp $ EAPI="1" @@ -182,7 +182,7 @@ pkg_postinst() { fi if ! test -f /proc/cmdline || - ! egrep -q '(console|CONSOLE)=(tty1|/dev/tty1)' /proc/cmdline ; then + ! egrep -q '(console=tty1|CONSOLE=/dev/tty1)' /proc/cmdline ; then elog "It is required that you add 'console=tty1' to your kernel" elog "command line parameters." elog "" |