When I build a program from source (CentOS), How do I go about updating it to a new version? Can I just run the make && make install again with the same configure options?
|
feedback
|
|
When you get the new source, check the README or INSTALL files. Often there will be a section about upgrading. If there is not, doing a make && make install should work. | |||
|
feedback
|
|
99% of time, just download the source of the new version (or a patch), build and install. | |||
|
feedback
|
|
This is where GNU Stow can be useful. I've been using this tool for years to keep my OS clean. This is a package manager for programs installed from source. Here's how it works. First, I have one single directory where I keep all such programs, When I want to delete or update the program, I run | |||
|
feedback
|