]> git.kaiwu.me - nginx.git/commitdiff
Style, parentheses instead of braces in misc/GNUMakefile.
authorMaxim Dounin <mdounin@mdounin.ru>
Tue, 30 Oct 2012 11:09:38 +0000 (11:09 +0000)
committerMaxim Dounin <mdounin@mdounin.ru>
Tue, 30 Oct 2012 11:09:38 +0000 (11:09 +0000)
misc/GNUmakefile

index 69ef2296f837bba2b7567ee010dbd70b31ae1ec1..a9036c6b4625b3bdde57dd49409e35fa48c349cd 100644 (file)
@@ -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                                  \