diff options
author | Tim Yamin <plasmaroo@gentoo.org> | 2006-01-03 22:10:41 +0000 |
---|---|---|
committer | Tim Yamin <plasmaroo@gentoo.org> | 2006-01-03 22:10:41 +0000 |
commit | 443df1c0c0aa6afc60af7a364e8e35e611beecf2 (patch) | |
tree | e7369164bc2d50a028aac67d7fdff2309ecc0a5f /sys-boot | |
parent | Add modular X dependencies, bug #117639 (diff) | |
download | gentoo-2-443df1c0c0aa6afc60af7a364e8e35e611beecf2.tar.gz gentoo-2-443df1c0c0aa6afc60af7a364e8e35e611beecf2.tar.bz2 gentoo-2-443df1c0c0aa6afc60af7a364e8e35e611beecf2.zip |
Always define $loop in the elilo script to prevent it getting imported from the environment.
(Portage version: 2.1_pre2)
Diffstat (limited to 'sys-boot')
-rw-r--r-- | sys-boot/elilo/ChangeLog | 8 | ||||
-rw-r--r-- | sys-boot/elilo/files/elilo-3.4 | 2 |
2 files changed, 8 insertions, 2 deletions
diff --git a/sys-boot/elilo/ChangeLog b/sys-boot/elilo/ChangeLog index 14fb38759541..11a723ec597b 100644 --- a/sys-boot/elilo/ChangeLog +++ b/sys-boot/elilo/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-boot/elilo -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/elilo/ChangeLog,v 1.11 2005/10/03 16:38:33 agriffis Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/elilo/ChangeLog,v 1.12 2006/01/03 22:10:41 plasmaroo Exp $ + + 03 Jan 2006; Tim Yamin <plasmaroo@gentoo.org> files/elilo-3.4: + Always define $loop in the elilo script to prevent it getting imported from + the environment. 03 Oct 2005; Aron Griffis <agriffis@gentoo.org> elilo-3.4-r3.ebuild: Add PROVIDE=virtual/bootloader #107940 diff --git a/sys-boot/elilo/files/elilo-3.4 b/sys-boot/elilo/files/elilo-3.4 index f34a2fe75a54..a7a1280ecf74 100644 --- a/sys-boot/elilo/files/elilo-3.4 +++ b/sys-boot/elilo/files/elilo-3.4 @@ -305,6 +305,8 @@ mnt() ## ever wanted too. if [ -f "$boot" ] ; then local loop=",loop" + else + local loop='' fi if [ -e "$TMP/bootstrap.$$" ] ; then |