diff options
| author | Luc Heinrich | 2012-07-20 01:41:45 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2012-07-21 13:15:59 -0700 |
| commit | ae6c39d9bec3c9c768e2e7a6a536b9c2576ca0cf (patch) | |
| tree | 48752bc3aa02d980470354b4b785e81394b78ca5 /Library/Formula | |
| parent | ab91a1a3656f54ea91559f7ef4f593dd3c9653f7 (diff) | |
| download | homebrew-ae6c39d9bec3c9c768e2e7a6a536b9c2576ca0cf.tar.bz2 | |
nginx: remove doubly quoted parameters
fixes #13502
closes #13504
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/nginx.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/nginx.rb b/Library/Formula/nginx.rb index 4b803ab3f..0681f8cb7 100644 --- a/Library/Formula/nginx.rb +++ b/Library/Formula/nginx.rb @@ -44,8 +44,8 @@ class Nginx < Formula "--with-http_ssl_module", "--with-pcre", "--with-ipv6", - "--with-cc-opt='-I#{HOMEBREW_PREFIX}/include'", - "--with-ld-opt='-L#{HOMEBREW_PREFIX}/lib'", + "--with-cc-opt=-I#{HOMEBREW_PREFIX}/include", + "--with-ld-opt=-L#{HOMEBREW_PREFIX}/lib", "--conf-path=#{etc}/nginx/nginx.conf", "--pid-path=#{var}/run/nginx.pid", "--lock-path=#{var}/nginx/nginx.lock"] |
