summaryrefslogtreecommitdiffhomepage
path: root/misc
diff options
context:
space:
mode:
authorMaxim Dounin <mdounin@mdounin.ru>2012-10-30 11:09:38 +0000
committerMaxim Dounin <mdounin@mdounin.ru>2012-10-30 11:09:38 +0000
commitd310eeef3f25c788546c885434292575fdf67663 (patch)
tree2ad2e7e75984d40bf8286af223ebbd6e6210c077 /misc
parent1e12e7fa1db39cf256d2219c394c118f3175053d (diff)
downloadnginx-d310eeef3f25c788546c885434292575fdf67663.tar.gz
nginx-d310eeef3f25c788546c885434292575fdf67663.tar.bz2
Style, parentheses instead of braces in misc/GNUMakefile.
Diffstat (limited to 'misc')
-rw-r--r--misc/GNUmakefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/misc/GNUmakefile b/misc/GNUmakefile
index 69ef2296f..a9036c6b4 100644
--- a/misc/GNUmakefile
+++ b/misc/GNUmakefile
@@ -85,7 +85,7 @@ snapshot:
win32:
./auto/configure \
--with-cc=cl \
- --builddir=${OBJS} \
+ --builddir=$(OBJS) \
--with-debug \
--prefix= \
--conf-path=conf/nginx.conf \
@@ -99,8 +99,8 @@ win32:
--http-scgi-temp-path=temp/scgi_temp \
--http-uwsgi-temp-path=temp/uwsgi_temp \
--with-cc-opt=-DFD_SETSIZE=1024 \
- --with-pcre=${OBJS}/lib/${PCRE} \
- --with-zlib=${OBJS}/lib/${ZLIB} \
+ --with-pcre=$(OBJS)/lib/$(PCRE) \
+ --with-zlib=$(OBJS)/lib/$(ZLIB) \
--with-select_module \
--with-http_realip_module \
--with-http_addition_module \
@@ -114,7 +114,7 @@ win32:
--with-http_random_index_module \
--with-http_secure_link_module \
--with-mail \
- --with-openssl=${OBJS}/lib/${OPENSSL} \
+ --with-openssl=$(OBJS)/lib/$(OPENSSL) \
--with-openssl-opt=enable-tlsext \
--with-http_ssl_module \
--with-mail_ssl_module \