3.9.09

:: solution for libtoolT error

:: what is
please take a look at this.

:: case
/bin/rm: cannot remove `libtoolT': No such file or directory
if you get some error message like that when you compiling some application from source you can do like this for resolve on it.

:: solution
this example for resolve on compiling mysql package. install libtool packages from repository and run liboolize command line on the package:
linux:~/download/mysql-5.1.37 # yum install libtool
linux:~/download/mysql-5.1.37 # libtoolize --force
linux:~/download/mysql-5.1.37 # autoconf
and/or
linux:~/download/mysql-5.1.37 # autoreconf
after that you can recompile and install your package from source.

:: links
+ GoogleLinux