Changeset 9743
Legend:
- Unmodified
- Added
- Removed
-
bootstrap
r9736 r9743 2 2 3 3 fail=0 4 if [ ! -x`which aclocal` ]; then5 echo "aclocal is missing, please install automake (e.g., sudo apt-get install automake)"4 if [ ! `which aclocal` ]; then 5 echo "aclocal is missing, please install automake first (e.g., sudo apt-get install automake)" 6 6 fail=1 7 7 fi 8 8 9 if [ ! -x`which libtoolize` ]; then10 echo "libtoolize is missing, please install libtool (e.g., sudo apt-get install libtool)"9 if [ ! `which libtoolize` ]; then 10 echo "libtoolize is missing, please install libtool first (e.g., sudo apt-get install libtool)" 11 11 fail=1 12 12 fi 13 13 14 14 if [ $fail -eq 1 ]; then 15 echo " Stopped."15 echo "** Script aborted due to errors." 16 16 exit 1; 17 17 fi
Note:
See TracChangeset
for help on using the changeset viewer.