I'm trying to install Apache Server on my Ubuntu for using a web page made in PHP.
I downloaded pcre, apr and apr-util and I configured, maked and make install all of them.
Then, when I came back to the Apache folder, the following command
sudo ./configure --prefix=/home/test/Apache/srclib/apr-util
--with-apr=/home/test/Apache/srclib/apr
--with-pcre=/home/test/Apache/pcre
--with-included-apr
succeded.
Even the command
sudo make
succeded. But, when I type sudo make install, I got the following error:
Makefile:79: recipe for target 'install' failed
make[2]: *** [install] Error 1
make[2]: Leaving directory '/home/test/Apache/srclib/apr-util'
/home/test/Apache/build/rules.mk:75: recipe for target 'install-recursive' failed
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory '/home/test/Apache/srclib'
/home/test/Apache/build/rules.mk:75: recipe for target 'install-recursive' failed
make: *** [install-recursive] Error 1
Please, could you give me any tip? Thank you