diff auto/install @ 4850:e74c39b69ebe stable-1.2

Merge of r4842: fixed make macros to use parentheses. 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.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 24 Sep 2012 18:46:50 +0000
parents f033afb9d3f0
children c983c8dea44c
line wrap: on
line diff
--- a/auto/install
+++ b/auto/install
@@ -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