aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2010-10-26 09:19:07 -0700
committerAdam Vandenberg2010-10-26 09:19:07 -0700
commitf4ce357d44ef6e9eaf3d891795643ad517d269f0 (patch)
treec33782be1918d7e0f1e2d0ca3773aeedbee03b19
parentee72f25b88c40defb261747ba4619ee326fa1830 (diff)
downloadbrew-f4ce357d44ef6e9eaf3d891795643ad517d269f0.tar.bz2
brew-doctor - alt. autoconf path
-rw-r--r--Library/Homebrew/brew_doctor.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/brew_doctor.rb b/Library/Homebrew/brew_doctor.rb
index 462445e70..ef89fa7e8 100644
--- a/Library/Homebrew/brew_doctor.rb
+++ b/Library/Homebrew/brew_doctor.rb
@@ -506,7 +506,7 @@ end
def check_for_autoconf
which_autoconf = `/usr/bin/which autoconf`.chomp
- if which_autoconf != '/usr/bin/autoconf'
+ unless (which_autoconf == '/usr/bin/autoconf' or which_autoconf == '/Developer/usr/bin/autoconf')
puts <<-EOS.undent
You have an "autoconf" in your path blocking the system version at:
#{which_autoconf}