* util/i386/efi/grub-dumpdevtree: replaced the non-portable `==' by

`=' and added double quotes on operands of this equality test.
This commit is contained in:
Grégoire Sutre 2010-04-03 20:23:21 +02:00 committed by Vladimir 'phcoder' Serbinenko
parent 3db3a82b75
commit bd5a6415b0
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-04-03 Grégoire Sutre <gregoire.sutre@gmail.com>
* util/i386/efi/grub-dumpdevtree: replaced the non-portable `==' by
`=' and added double quotes on operands of this equality test.
2010-04-03 Vladimir Serbinenko <phcoder@gmail.com>
* Makefile.in (uninstall): Remove a leftover debug echo.

View File

@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with GRUB. If not, see <http://www.gnu.org/licenses/>.
if [ x$1 == x ]; then
if [ "x$1" = "x" ]; then
echo "Filename required".
fi