解决Centos7 解决安装Nginx编辑make && make install的不成功
make: *** No rule to make target `build‘, needed by `default‘. Stop.
解决方案
1、安装下面配置
yum -y install make zlib-devel gcc-c++ libtool openssl openssl-devel
2、重新configure
./configure
3、编译
make && make install
make: *** No rule to make target `build', needed by `default'. Stop.
原文:https://www.cnblogs.com/yyhhblog/p/12953631.html