+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.
-#! /bin/bash -e
+#! /bin/sh -e
# Compares GRUB script output with BASH output.
# Copyright (C) 2009,2010 Free Software Foundation, Inc.
if [ "x${source}" = x ] ; then
tmpfile=`mktemp`
- while read; do
+ while read REPLY; do
echo $REPLY >> ${tmpfile}
done
source=${tmpfile}