I'm trying to upgrade some existing software on a Linux box, such as GNU tar and GNU m4 with the old-fashioned
Code:
./configure && make && make install
However, I notice that after these commands have finished, the old versions are still installed and I can't seem to access the new ones. For example, after attempting to install tar 1.15.1:
Code:
> tar --version
tar (GNU tar) 1.13.25
Copyright © 2001 Free Software Foundation, Inc.
This program comes with NO WARRANTY, to the extent permitted by law.
You may redistribute it under the terms of the GNU General Public License;
see the file named COPYING for details.
Written by John Gilmore and Jay Fenlason.
Is there some sort of "make upgrade" or other step I have to do in order to forcibly overwrite the old version?