On Thu, Jan 16, 2003 at 01:01:41PM -0000, Yogesh Hasabnis wrote: > As always I am posting a very silly question. Sorry for that ! > I have installed a package which is distributed in a tar format. > Now I can't find a way of uninstalling it. I have installed it > using > the usual ./configure; make all; make install; way.
See if the Makefile has an "unsinstall" target. If not, go to the source directory and do a "make -n install >> file-list". This will execute the Makefile without actually doing anything, and the output will be saved in "file-list". From that, you can figure out what all changes were made by "make install". I usually do this before actually installing anything. Sameer. -- Research Scholar, Reconfigurable Computing Lab, KReSIT, IIT-Bombay. ---------------------------------------------------------------------- You will be traveling and coming into a fortune. ------------------------------------------------------- This SF.NET email is sponsored by: Thawte.com Understand how to protect your customers personal information by implementing SSL on your Apache Web Server. Click here to get our FREE Thawte Apache Guide: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0029en _______________________________________________ linux-india-help mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/linux-india-help
