Changeset 1490 in MondoRescue for branches/2.2.4/mindi/install.sh


Ignore:
Timestamp:
Jun 6, 2007, 4:29:17 PM (17 years ago)
Author:
Bruno Cornec
Message:

Stricter POSIX conformance for all shell scripts (== replaced by = in compare)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.4/mindi/install.sh

    r1236 r1490  
    4242echo "mindi ${MINDIVER}-r${MINDIREV} will be installed under $local"
    4343
    44 if [ _"$MANDIR" == _"" ]; then
     44if [ _"$MANDIR" = _"" ]; then
    4545    MANDIR=$local/share/man/man8
    4646else
    4747    MANDIR=${HEAD}$MANDIR/man8
    4848fi
    49 if [ _"$DOCDIR" == _"" ]; then
     49if [ _"$DOCDIR" = _"" ]; then
    5050    DOCDIR=$local/share/doc/mindi-$MINDIVER
    5151else
    5252    DOCDIR=${HEAD}$DOCDIR/mindi-$MINDIVER
    5353fi
    54 if [ _"$LIBDIR" == _"" ]; then
     54if [ _"$LIBDIR" = _"" ]; then
    5555    ARCH=`/bin/arch`
    5656    echo $ARCH | grep -E '^i[0-9]86$' &> /dev/null && ARCH=i386 && locallib=$local/lib
Note: See TracChangeset for help on using the changeset viewer.