aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorLuc Heinrich2012-07-20 01:41:45 +0200
committerAdam Vandenberg2012-07-21 13:15:59 -0700
commitae6c39d9bec3c9c768e2e7a6a536b9c2576ca0cf (patch)
tree48752bc3aa02d980470354b4b785e81394b78ca5 /Library/Formula
parentab91a1a3656f54ea91559f7ef4f593dd3c9653f7 (diff)
downloadhomebrew-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.rb4
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"]