diff options
| author | Alexey Palazhchenko | 2012-12-17 19:10:56 +0400 |
|---|---|---|
| committer | Adam Vandenberg | 2012-12-29 10:14:11 -0800 |
| commit | 3def3628e2fa85e6b801e3185b42ccf5afc6a993 (patch) | |
| tree | f9c8a21b18dbce81bd5b7be5bc477e0576e6cb19 /Library/Formula | |
| parent | b34ca1379d36cfd4539d2d3d4e9770439a97cd53 (diff) | |
| download | homebrew-3def3628e2fa85e6b801e3185b42ccf5afc6a993.tar.bz2 | |
nginx: Add --with-debug option.
Closes #16624.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/nginx.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/nginx.rb b/Library/Formula/nginx.rb index d2147a514..93b08d6e2 100644 --- a/Library/Formula/nginx.rb +++ b/Library/Formula/nginx.rb @@ -16,6 +16,7 @@ class Nginx < Formula option 'with-passenger', 'Compile with support for Phusion Passenger module' option 'with-webdav', 'Compile with support for WebDAV module' + option 'with-debug', 'Compile with support for debug log' skip_clean 'logs' @@ -55,6 +56,7 @@ class Nginx < Formula args << passenger_config_args if build.include? 'with-passenger' args << "--with-http_dav_module" if build.include? 'with-webdav' + args << "--with-debug" if build.include? 'with-debug' system "./configure", *args system "make" |
