Configure: fixed make macros to use parentheses instead of braces.

Parentheses are more portable, in particular they are understood by nmake
while braces aren't.
This commit is contained in:
Maxim Dounin
2012-09-11 12:43:59 +00:00
parent a8742ab5f1
commit 27b9435343
3 changed files with 3 additions and 3 deletions

View File

@@ -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