Quote:
Originally Posted by ufmale
I download src code, compile, and install it
Code:
$ make
$ make install
Now, i want to uninstall it, but I cannot find any rules in the "Makefile" saying uninstall, what can i do?
The problem is specifically for yum-2.4, and yum-2.6
where the "Makefile" has following content
can any exppert around here help me uninstall it?
|
Have a look at checkinstall; it's build for exactly this, to "wrap"
around the "make install" bit of the "configure && make && make install".
It takes the place of the make install, and produces an RPM, a DEB or
a Slackware TGZ package for you, which you then can easily install,
reinstall or uninstall. Even if you already ran "make install", re-
doing it with checkinstall should let you get rid of all the files
even if the Makefile doesn't have an un-install option.
Cheers,
Tink