diff options
| author | Adam Vandenberg | 2010-10-26 09:19:07 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2010-10-26 09:19:07 -0700 |
| commit | 8d834607f6f2317dec89a0d27b0c2df6140f1018 (patch) | |
| tree | 419ece8e01b4a007c6432a257d58d8801e5c3c60 | |
| parent | 43d1dc87ca84173bbcb705571a968162938f72a9 (diff) | |
| download | homebrew-8d834607f6f2317dec89a0d27b0c2df6140f1018.tar.bz2 | |
brew-doctor - alt. autoconf path
| -rw-r--r-- | Library/Homebrew/brew_doctor.rb | 2 |
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} |
