From: Chris Gianelloni Date: Thu, 14 Feb 2008 01:40:26 +0000 (+0000) Subject: We only need to make sure that we have /sbin and /usr/sbin in our PATH for bug #97378... X-Git-Tag: v3.4.10.902~159 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=957c60e41d4fe00a46a26d2d5fea88e6db6bd1df;p=genkernel.git We only need to make sure that we have /sbin and /usr/sbin in our PATH for bug #97378, not reset it. Thanks to Justin Bronder in bug #209182 for pointing it out. This is genkernel 3.4.10_pre1 for testing. git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@593 67a159dc-881f-0410-a524-ba9dfbe2cb84 --- diff --git a/ChangeLog b/ChangeLog index 3342706..94ac9b9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,11 @@ # Copyright 2006-2008 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 14 Feb 2008; Chris Gianelloni genkernel: + We only need to make sure that we have /sbin and /usr/sbin in our PATH for + bug #97378, not reset it. Thanks to Justin Bronder in + bug #209182 for pointing it out. This is genkernel 3.4.10_pre1 for testing. + 14 Feb 2008; Chris Gianelloni gen_cmdline.sh, gen_compile.sh, gen_determineargs.sh, gen_initramfs.sh, gen_initrd.sh, generic/initrd.scripts, generic/linuxrc, genkernel, genkernel.conf, diff --git a/genkernel b/genkernel index e88bb6b..ad6d068 100755 --- a/genkernel +++ b/genkernel @@ -1,7 +1,7 @@ #!/bin/bash -PATH="/bin:/usr/bin:/sbin:/usr/sbin" -GK_V='3.4.9' +PATH="${PATH}:/sbin:/usr/sbin" +GK_V='3.4.10_pre1' # Set the default for TMPDIR. May be modified by genkernel.conf or the # --tempdir command line option.