Installing make with wget

Posted by John on Server Fault See other posts from Server Fault or by John
Published on 2009-06-25T05:11:09Z Indexed on 2013/11/04 3:58 UTC
Read the original article Hit count: 402

Filed under:
|
|

How can I install make with wget on CentOS?

I tried:

cd /tmp wget ftp.gnu.org/pub/gnu/make/make-3.81.tar.gz 
tar xfz make-3.81.tar.gz 
cd make-3.81 PATH=/usr/local/bin:/usr/bin:/bin 
./configure patch -p1<make-3.81-cygwin.patch patch -p0<make-3.81-cygwin_MAKE_expansion.patch PATH=/usr/local/bin:/usr/bin:/bin 
make PATH=/usr/local/bin:/usr/bin:/bin 
make install 

However, I got an error message stating I had no acceptable C compiler.

© Server Fault or respective owner

Related posts about centos

Related posts about wget