Author Topic: How to remove codeblocks 10.05  (Read 6823 times)

Offline eweb2009

  • Multiple posting newcomer
  • *
  • Posts: 14
How to remove codeblocks 10.05
« on: June 08, 2010, 05:20:13 am »
Ubuntu10.04 + GNU GCC compiler
compiled codeblocks 10.05 using source code package and installed it.




Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: How to remove codeblocks 10.05
« Reply #1 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.

Offline eweb2009

  • Multiple posting newcomer
  • *
  • Posts: 14
Re: How to remove codeblocks 10.05
« Reply #2 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.

Offline eweb2009

  • Multiple posting newcomer
  • *
  • Posts: 14
Re: How to remove codeblocks 10.05
« Reply #3 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?


Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: How to remove codeblocks 10.05
« Reply #4 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 ?

Offline eweb2009

  • Multiple posting newcomer
  • *
  • Posts: 14
Re: How to remove codeblocks 10.05
« Reply #5 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.