I run the following:

$ cd /opt/mod_fastcgi-2.4.6
$ cp Makefile.AP2 Makefile
$ make top_dir=/etc/httpd
$ make install

I keep getting this error when I run make:

-bash: make: command not found

What is going on?

link|improve this question
feedback

1 Answer

Erm, obviously you haven't installed make.

On Ubuntu: sudo apt-get install build-essential

On CentOS: sudo yum install make gcc gcc-c++

link|improve this answer
Not true - if that were the case he'd get that after the first make call, would he not? – GodEater Jun 27 '11 at 7:08
He didn't specify when he got the error. And I doubt that calling a command 2 times immediately after each other would produce command not found only for the 2nd time. – Lamnk Jun 28 '11 at 0:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.