mirror of
https://github.com/nginx/nginx.git
synced 2025-02-25 18:55:26 -06:00
Configure: fixed "make" used instead of "${MAKE}".
This commit is contained in:
parent
3d87bcf9ae
commit
8aaf9d35b7
@ -8,7 +8,7 @@ if [ $USE_PERL = YES ]; then
|
||||
cat << END >> $NGX_MAKEFILE
|
||||
|
||||
install_perl_modules:
|
||||
cd $NGX_OBJS/src/http/modules/perl && make install
|
||||
cd $NGX_OBJS/src/http/modules/perl && \${MAKE} install
|
||||
END
|
||||
|
||||
NGX_INSTALL_PERL_MODULES=install_perl_modules
|
||||
|
@ -6,7 +6,7 @@
|
||||
cat << END >> $NGX_MAKEFILE
|
||||
|
||||
$NGX_LIBATOMIC/src/libatomic_ops.a: $NGX_LIBATOMIC/Makefile
|
||||
cd $NGX_LIBATOMIC && make
|
||||
cd $NGX_LIBATOMIC && \${MAKE}
|
||||
|
||||
$NGX_LIBATOMIC/Makefile: $NGX_MAKEFILE
|
||||
cd $NGX_LIBATOMIC && ./configure
|
||||
|
@ -12,7 +12,7 @@ $NGX_OBJS/src/http/modules/perl/blib/arch/auto/nginx/nginx.so: \
|
||||
$NGX_OBJS/src/http/modules/perl/Makefile
|
||||
cp -p src/http/modules/perl/nginx.* $NGX_OBJS/src/http/modules/perl/
|
||||
|
||||
cd $NGX_OBJS/src/http/modules/perl && make
|
||||
cd $NGX_OBJS/src/http/modules/perl && \${MAKE}
|
||||
|
||||
rm -rf $NGX_OBJS/install_perl
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user