mirror of
https://github.com/nginx/nginx.git
synced 2024-12-31 19:27:43 -06:00
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:
parent
a8742ab5f1
commit
27b9435343
@ -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