Removed some quotes to make sure we have a binary operator and closing bug #117649.
authorChris Gianelloni <wolf31o2@gentoo.org>
Wed, 1 Feb 2006 21:09:50 +0000 (21:09 +0000)
committerChris Gianelloni <wolf31o2@gentoo.org>
Wed, 1 Feb 2006 21:09:50 +0000 (21:09 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@1060 d1e1f19c-881f-0410-ab34-b69fee027534

ChangeLog
targets/support/functions.sh

index daceab283a3589832b2ad0b11129fca14c6d5053..eff8288d359059a5e630e16868e826d549f28e32 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.545 2006/01/31 14:59:14 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.546 2006/02/01 21:09:50 wolf31o2 Exp $
+
+  01 Feb 2006; Chris Gianelloni <wolf31o2@gentoo.org>
+  targets/support/functions.sh:
+  Removed some quotes to make sure we have a binary operator and closing bug
+  #117649.
 
   31 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org> catalyst,
   targets/support/create-iso.sh:
index 01cea558cbad08584876f3af3a56d3838f9a15b0..a028d2d4a7cfb2ae7d566637212850f06653eb2d 100755 (executable)
@@ -158,15 +158,15 @@ extract_kernel() {
        mv ${1}/kernel-* ${1}/${2}
 
        # change initrd name from "initrd" to "gentoo.igz", for example
-       if [ -e "${1}/initrd-*" ]
+       if [ -e ${1}/initrd-* ]
        then
-               mv "${1}/initrd-*" "${1}/${2}.igz"
+               mv ${1}/initrd-* ${1}/${2}.igz
        fi
 
        # change initramfs name from "initramfs" to "gentoo.igz", for example
-       if [ -e "${1}"/initramfs-* ]
+       if [ -e ${1}/initramfs-* ]
        then
-               mv "${1}"/initramfs-* "${1}/${2}.igz"
+               mv ${1}/initramfs-* ${1}/${2}.igz
        fi
 }