aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/nginx.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/nginx.rb b/Library/Formula/nginx.rb
index f3f4bcecd..e7506df36 100644
--- a/Library/Formula/nginx.rb
+++ b/Library/Formula/nginx.rb
@@ -30,10 +30,10 @@ class Nginx < Formula
skip_clean 'logs'
def passenger_config_args
- passenger_root = `passenger-config --root`.chomp
+ nginx_ext = `passenger-config --nginx-addon-dir`.chomp
- if File.directory?(passenger_root)
- return "--add-module=#{passenger_root}/ext/nginx"
+ if File.directory?(nginx_ext)
+ return "--add-module=#{nginx_ext}"
end
puts "Unable to install nginx with passenger support. The passenger"