Is there anyway of removing files installed by running the command make install?

link|improve this question

44% accept rate
feedback

3 Answers

up vote 1 down vote accepted

The majority of packages that have make install also provide a make uninstall; this will usually remove package files, but not configuration files, similar to how apt-get remove works, in contrast to apt-get purge.

This, of course, only works properly if you keep the original package directory or reconfigure it using the same parameters for --prefix and such.

link|improve this answer
feedback

There is no automated way - that is why we have package managers.

You would have to manually go through the Makefile and find the files / directories that it installs and manually remove them.

link|improve this answer
feedback

On Ubuntu, it's actually pretty easy:

Install CheckInstall:

sudo aptitude install checkinstall

Run Make and let checkinstall create a .deb:

sudo make; sudo checkinstall

Uninstall the .deb and you're done.

Ubuntu Wiki

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.