]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* tests/util/grub-shell.in: Remove bashisms and declare as sh script.
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Wed, 7 Jul 2010 15:51:26 +0000 (17:51 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Wed, 7 Jul 2010 15:51:26 +0000 (17:51 +0200)
ChangeLog
tests/util/grub-shell.in

index e4b5143d40bbe202e2ef923ffa7acae1bee7cfc2..789ebd39148621d181c5bce4d3153d3f2cadff43 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-07-07  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * tests/util/grub-shell.in: Remove bashisms and declare as sh script.
+
 2010-07-07  Colin Watson  <cjwatson@ubuntu.com>
 
        * term/gfxterm.c (grub_gfxterm_background_image_cmd): Fix
index 17da6c8c03747e26a77a48502e4f809e918e5b16..2cd2561315ccd439649a2e97cf9339eebe1278c4 100644 (file)
@@ -1,4 +1,4 @@
-#! /bin/bash -e
+#! /bin/sh -e
 
 # Run GRUB script in a Qemu instance
 # Copyright (C) 2009,2010  Free Software Foundation, Inc.
@@ -94,7 +94,7 @@ done
 
 if [ "x${source}" = x ] ; then
     tmpfile=`mktemp`
-    while read; do
+    while read REPLY; do
        echo $REPLY >> ${tmpfile}
     done
     source=${tmpfile}