diff options
| author | Mike McQuaid | 2014-12-27 16:10:16 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2014-12-27 16:31:47 +0000 |
| commit | eadecd9d06fff71855a5ad49b5e992a9ecf7b169 (patch) | |
| tree | a8c2000a06d643b0162d2142a374bc960b1284a7 | |
| parent | 030a64267f0245d5aeb87566fa2c8492df6f41fa (diff) | |
| download | homebrew-eadecd9d06fff71855a5ad49b5e992a9ecf7b169.tar.bz2 | |
nginx: fix strict audit failures.
| -rw-r--r-- | Library/Formula/nginx.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Library/Formula/nginx.rb b/Library/Formula/nginx.rb index ba57329b5..7fc4783ae 100644 --- a/Library/Formula/nginx.rb +++ b/Library/Formula/nginx.rb @@ -1,5 +1,3 @@ -require "formula" - class Nginx < Formula homepage "http://nginx.org/" url "http://nginx.org/download/nginx-1.6.2.tar.gz" @@ -79,7 +77,7 @@ class Nginx < Formula system "./configure", *args end system "make" - system "make install" + system "make", "install" man8.install "objs/nginx.8" (var/"run/nginx").mkpath end |
