Changeset 9743


Ignore:
Timestamp:
Apr 7, 2011, 5:46:15 PM (13 years ago)
Author:
bless
Message:
  • fixed which command checks
File:
1 edited

Legend:

Unmodified
Added
Removed
  • bootstrap

    r9736 r9743  
    22
    33fail=0
    4 if [ ! -x `which aclocal` ]; then
    5     echo "aclocal is missing, please install automake (e.g., sudo apt-get install automake)"
     4if [ ! `which aclocal` ]; then
     5    echo "aclocal is missing, please install automake first (e.g., sudo apt-get install automake)"
    66    fail=1
    77fi
    88
    9 if [ ! -x `which libtoolize` ]; then
    10     echo "libtoolize is missing, please install libtool (e.g., sudo apt-get install libtool)"
     9if [ ! `which libtoolize` ]; then
     10    echo "libtoolize is missing, please install libtool first (e.g., sudo apt-get install libtool)"
    1111    fail=1
    1212fi
    1313
    1414if [ $fail -eq 1 ]; then
    15     echo "Stopped."
     15    echo "** Script aborted due to errors."
    1616    exit 1;
    1717fi
Note: See TracChangeset for help on using the changeset viewer.