Fatal error when trying to update to mysql 5.6.25

jojolafrite

Verified User
Joined
Sep 19, 2014
Messages
53
With debian 7 I had

Code:
Fatal error: can't create CMakeFiles/sql.dir/sql_select.cc.o: No such file or directory
make[2]: *** [sql/CMakeFiles/sql.dir/sql_select.cc.o] Error 1
make[1]: *** [sql/CMakeFiles/sql.dir/all] Error 2
make: *** [all] Error 2

*** The make has failed, would you like to try to make again? (y,n):

after doing a ./build mysql

issue is related to cmake.

Code:
wget http://files1.directadmin.com/services/custombuild/cmake-2.8.11.tar.gz
tar xzf cmake-2.8.11.tar.gz
cd cmake-2.8.11
./configure
make
make install

mv /usr/bin/cmake /usr/bin/cmake.back
ln -s /usr/local/bin/cmake /usr/bin/cmake

cd /usr/local/directadmin/custombuild/
./build mysql
 
Last edited:
Back
Top