* tests/util/grub-shell.in: Remove bashisms and declare as sh script.
This commit is contained in:
parent
f7bf0918aa
commit
becce1b16a
2 changed files with 6 additions and 2 deletions
|
@ -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>
|
2010-07-07 Colin Watson <cjwatson@ubuntu.com>
|
||||||
|
|
||||||
* term/gfxterm.c (grub_gfxterm_background_image_cmd): Fix
|
* term/gfxterm.c (grub_gfxterm_background_image_cmd): Fix
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#! /bin/bash -e
|
#! /bin/sh -e
|
||||||
|
|
||||||
# Run GRUB script in a Qemu instance
|
# Run GRUB script in a Qemu instance
|
||||||
# Copyright (C) 2009,2010 Free Software Foundation, Inc.
|
# Copyright (C) 2009,2010 Free Software Foundation, Inc.
|
||||||
|
@ -94,7 +94,7 @@ done
|
||||||
|
|
||||||
if [ "x${source}" = x ] ; then
|
if [ "x${source}" = x ] ; then
|
||||||
tmpfile=`mktemp`
|
tmpfile=`mktemp`
|
||||||
while read; do
|
while read REPLY; do
|
||||||
echo $REPLY >> ${tmpfile}
|
echo $REPLY >> ${tmpfile}
|
||||||
done
|
done
|
||||||
source=${tmpfile}
|
source=${tmpfile}
|
||||||
|
|
Loading…
Add table
Reference in a new issue