Changeset 1042 in MondoRescue for branches/stable/tools/mkqemu


Ignore:
Timestamp:
Jan 7, 2007, 12:10:23 PM (17 years ago)
Author:
Bruno Cornec
Message:

Syntax review (== suppresse for stricter POSIX conformance with =)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/tools/mkqemu

    r899 r1042  
    66#
    77
    8 if [ _"$1" == _"" ]; then
     8if [ _"$1" = _"" ]; then
    99    echo "Syntax: qemu vm"
    1010    exit -1
     
    2020
    2121ARCH=`/bin/arch`
    22 if [ $ARCH == "x86_64" ]; then
     22if [ $ARCH = "x86_64" ]; then
    2323    qemucmd32=/usr//bin/qemu-system-i386
    2424    qemucmd64=/usr//bin/qemu
Note: See TracChangeset for help on using the changeset viewer.