aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2011-05-26 22:19:15 -0700
committerAdam Vandenberg2011-05-26 22:19:22 -0700
commit7e132a8c46dbc39920dfcf3651996fa140c5473b (patch)
tree3fe00acd223893a5fc3ae5af53df57ca609be259 /Library
parent85d7d4e16c0988edcceb127dbbe3b12af3655bdd (diff)
downloadbrew-7e132a8c46dbc39920dfcf3651996fa140c5473b.tar.bz2
brew doctor: update autoconf message
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/doctor.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb
index c9a62111b..dddfc30e4 100644
--- a/Library/Homebrew/cmd/doctor.rb
+++ b/Library/Homebrew/cmd/doctor.rb
@@ -571,11 +571,10 @@ def check_for_autoconf
which_autoconf = `/usr/bin/which autoconf`.chomp
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:
+ An "autoconf" in your path blocking the Xcode-provided version at:
#{which_autoconf}
- Custom autoconf in general and autoconf 2.66 in particular has issues
- and will cause some Homebrew formulae to fail.
+ This custom autoconf may cause some Homebrew formulae to fail to compile.
EOS
end