From b526cb057e1f34bf74be032bcbcdfd50fc785058 Mon Sep 17 00:00:00 2001 From: Eddie Monge Date: Wed, 8 Jan 2014 11:35:19 -0800 Subject: [PATCH] nginx: fix passenger detection and module location --root changed to an ini file but the check was looking for a directory Closes Homebrew/homebrew#25743. Signed-off-by: Mike McQuaid --- Formula/nginx.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/nginx.rb b/Formula/nginx.rb index f3f4bcecde..e7506df369 100644 --- a/Formula/nginx.rb +++ b/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"