* 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:
parent
3db3a82b75
commit
bd5a6415b0
2 changed files with 6 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue