mirror of
https://github.com/nginx/nginx.git
synced 2026-05-13 17:46:53 +00: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.
14 lines
305 B
Text
14 lines
305 B
Text
|
|
# Copyright (C) Igor Sysoev
|
|
# Copyright (C) Nginx, Inc.
|
|
|
|
|
|
cat << END >> $NGX_MAKEFILE
|
|
|
|
$NGX_LIBATOMIC/src/libatomic_ops.a: $NGX_LIBATOMIC/Makefile
|
|
cd $NGX_LIBATOMIC && \$(MAKE)
|
|
|
|
$NGX_LIBATOMIC/Makefile: $NGX_MAKEFILE
|
|
cd $NGX_LIBATOMIC && ./configure
|
|
|
|
END
|