/bin/rm: cannot remove `libtoolT’: No such file or directory 解決方案

 

 最近在編譯MySQL的過程發現錯誤提示:
/bin/rm: cannot remove `libtoolt': No such file or directory
解決方法:
1、確認libtool是否已經安裝,如果沒有安裝的話,則先安裝libtool
# yum -y install libtool
2、分別執行以下三條命令:
# autoreconf --force --install
# libtoolize --automake --force
# automake --force --add-missing
再重新編譯安裝,問題解決!
補充:
今天重新用這種方法貌似不管用了,用另一方法解決問題
vim configure
52125 #    $RM "$cfgfile"
把前面註釋掉
 我用的是mysql-5.1.44版本

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章