Advertisement

KDevelop Compile problem.....

Started by September 02, 2003 08:40 AM
1 comment, last by johnc82 21 years ago
hi.... when i compile my c source code it say.....

cd .. && \ 
/bin/sh /home/sengloong/Mydev/admin/missing --run automake --gnu test1/Makefile 
aclocal.m4:3009: your implementation of AM_INIT_AUTOMAKE comes from an 
aclocal.m4:3009: old Automake version. You should recreate aclocal.m4 
aclocal.m4:3009: with aclocal and run automake again. 
gmake: *** [Makefile.in] Error 1 
*** failed *** 
 
so i check out the aclocal.m4 line 3009, and find:

AM_INIT_AUTOMAKE($1, $2)
 
so anyone know the soulution to this problem? thanks.... :-)
:-)
It tells you the solution in the message: "You should recreate aclocal.m4 with aclocal and run automake again." Open a terminal and go to that directory, then run the aclocal corresponding to your version of automake (if you only have one version of automake installed, it should be "aclocal"). That should be all it needs.

Advertisement
If you're running KDevelop, you should be able to automagically rebuild your automake/autoconf scripts by clicking "Build -> Autoconf and Automake".

Then click Build -> Configure (or type ./configure from a shell) and then click Build -> Rebuild All.



[edited by - meldroc on September 2, 2003 4:07:48 PM]

This topic is closed to new replies.

Advertisement