diff options
Diffstat (limited to 'Library/Formula/nginx.rb')
| -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" |
