Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: eweb2009 on June 08, 2010, 05:20:13 am

Title: How to remove codeblocks 10.05
Post by: eweb2009 on June 08, 2010, 05:20:13 am
Ubuntu10.04 + GNU GCC compiler
compiled codeblocks 10.05 using source code package and installed it.



Title: Re: How to remove codeblocks 10.05
Post by: Jenna on June 08, 2010, 06:57:47 am
Ubuntu10.04 + GNU GCC compiler
compiled codeblocks 10.05 using source code package and installed it.




I'm not sure about your question.
If I understand right, you have installed C::B with automake-system (./configure;make; make install) and want to remove it, in this case make uninstall should do it.
Title: Re: How to remove codeblocks 10.05
Post by: eweb2009 on June 09, 2010, 02:19:33 am
Thank you very much for your reply.

that is what I did and tried to uninstall it by using "make uninstall". The weird thing is that it didn't work yesterday but it works now.

Anyway thank you again.
Title: Re: How to remove codeblocks 10.05
Post by: eweb2009 on June 09, 2010, 03:17:40 am
I have one more issue requesting your help in building source files.

The following is the error information when using command ./bootstrap

$ export ACLOCAL_FLAGS="-I `wx-config --prefix`/share/aclocal"
$ ./bootstrap
libtoolize: putting auxiliary files in `.'.
libtoolize: copying file `./ltmain.sh'
libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.in and
libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree.
libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
./bootstrap: 67: aclocal: not found

could you please tell me how to fix this?

Title: Re: How to remove codeblocks 10.05
Post by: Jenna on June 09, 2010, 06:50:04 am
It looks like the script can not find the aclocal executable.
if you run aclocal --version from commandline, do you get any meaningful output ?
If not is $ACLOCAL set (to a different value then aclocal) and can it be run ?
If echo $ACLOCAL does not return an empty string, what does $ACLOCAL --version return ?
Title: Re: How to remove codeblocks 10.05
Post by: eweb2009 on June 10, 2010, 03:46:45 am
I solved this by following procedures on http://wiki.codeblocks.org/index.php?title=Installing_Code::Blocks_from_source_on_Linux

Thank you very much.