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?
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?
Erm, obviously you haven't installed make
.
On Ubuntu: sudo apt-get install build-essential
On CentOS: sudo yum install make gcc gcc-c++