On Jul 07, 2004 at 09:45, Karunakar Chemudugunta <voicexml(a)gmail.com> wrote:
Hi List,
I have installed SER from souce using "make / install:. I would like
to know, how to uninstall SER if we install from source.
I am stuck now.. Any help appreciated.
There is no uninstall command.
However you can see the list of all the files and where they are
installed:
make BASEDIR=/tmp/ser install
cd /tmp/ser
find . -type f >file_list
You could also try to delete all of them (WARNING this can be dangerous,
don't try it unless you really know what you are doing and you are in
the right directory)
find . -type f -exec rm -i /{} \;
Andrei