* tests/util/grub-shell-tester.in: Remove bashism and declare as
sh script.
This commit is contained in:
parent
afaec079d1
commit
5e3bec6716
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2010-07-20 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* tests/util/grub-shell-tester.in: Remove bashism and declare as
|
||||
sh script.
|
||||
|
||||
2010-07-20 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* disk/loopback.c (grub_loopback): Replace filename with file.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#! /bin/bash -e
|
||||
#! /bin/sh -e
|
||||
|
||||
# Compares GRUB script output with BASH output.
|
||||
# Copyright (C) 2009,2010 Free Software Foundation, Inc.
|
||||
|
@ -84,7 +84,7 @@ done
|
|||
|
||||
if [ "x${source}" = x ] ; then
|
||||
tmpfile=`mktemp`
|
||||
while read; do
|
||||
while read REPLY; do
|
||||
echo $REPLY >> ${tmpfile}
|
||||
done
|
||||
source=${tmpfile}
|
||||
|
|
Loading…
Reference in a new issue