creating libastyle.la
(cd .libs && rm -f libastyle.la && ln -s ../libastyle.la libastyle.la)
make[5]: *** No rule to make target `astyle/compiler_defines.h', needed by `all-am'. Stop.
make[5]: Leaving directory `/home/michael/codeblocks/trunk/src/plugins/astyle'
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory `/home/michael/codeblocks/trunk/src/plugins/astyle'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/home/michael/codeblocks/trunk/src/plugins'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/michael/codeblocks/trunk/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/michael/codeblocks/trunk'
make: *** [build-stamp] Error 2
Delete this file - it was removed in revision 2523.
Delete this file - it was removed in revision 2523.After checking the file astyle/compiler_defines.h is not present (it has probably been already removed). May be the makefile has not been updated.
1) sudo aclocal
2) sudo ./bootstrap
3) sudo ./configure --enable-contrib
make distclean
./bootstrap
./configure --enable-contrib
make
sudo make install # sudo only need if install system wide
1) sudo aclocal
2) sudo ./bootstrap
3) sudo ./configure --enable-contrib
The real question is why weren't you doing this from start? Maybe I am paranoid but I have always been suspicious that autotool created build files will work after an update. So I have figured you need to regenerate the build system after each update.
I don't think the aclocal is needed I would do:Codemake distclean
./bootstrap
./configure --enable-contrib
make
sudo make install # sudo only need if install system wide
By the way, why do you have to be root to bootstrap and configure? Is that do to the package building environment?
I was told to run aclocal (I never run it before)../bootstrap is running aclocal, so I think either that it's not necessary to run it by your own :)
The real question is why weren't you doing this from start? Maybe I am paranoid but I have always been suspicious that autotool created build files will work after an update. So I have figured you need to regenerate the build system after each update.You don't trust autotools :twisted:
I was told to run aclocal (I never run it before)../bootstrap is running aclocal, so I think either that it's not necessary to run it by your own :)