]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* util/i386/efi/grub-dumpdevtree: replaced the non-portable `==' by
authorGrégoire Sutre <gregoire.sutre@gmail.com>
Sat, 3 Apr 2010 18:23:21 +0000 (20:23 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sat, 3 Apr 2010 18:23:21 +0000 (20:23 +0200)
`=' and added double quotes on operands of this equality test.

ChangeLog
util/i386/efi/grub-dumpdevtree

index 061b24a1128edd0e14c2931e72e90865d7222b62..035cd078a845c78280ae99e450e431493d1bf552 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index 25aa35e23e3ecb8059b74ce9acba0d1e2cfdb4ff..51004cc85a23dce0ef5405666d5a1963adf098e9 100644 (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