Legend:
- Unmodified
- Added
- Removed
-
bootstrap
r4104 r9736 1 #! /bin/sh 1 #! /bin/bash 2 3 fail=0 4 if [ ! -x `which aclocal` ]; then 5 echo "aclocal is missing, please install automake (e.g., sudo apt-get install automake)" 6 fail=1 7 fi 8 9 if [ ! -x `which libtoolize` ]; then 10 echo "libtoolize is missing, please install libtool (e.g., sudo apt-get install libtool)" 11 fail=1 12 fi 13 14 if [ $fail -eq 1 ]; then 15 echo "Stopped." 16 exit 1; 17 fi 18 19 echo "Running autotools..." 2 20 3 21 aclocal \ … … 6 24 && automake -a --foreign --add-missing \ 7 25 && autoreconf 26 27 echo "Done." 28 echo "Now type:" 29 echo "> ./configure" 30 echo "> make" 31 echo "> make install" 32
Note:
See TracChangeset
for help on using the changeset viewer.