Skip to content

Commit

Permalink
Configure: fixed "make" used instead of "${MAKE}".
Browse files Browse the repository at this point in the history
  • Loading branch information
mdounin committed Jul 7, 2012
1 parent 3d87bcf commit 8aaf9d3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion auto/install
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion auto/lib/libatomic/make
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion auto/lib/perl/make
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 8aaf9d3

Please sign in to comment.