doctor: check for ~/.pydistutils.cfg

Closes Homebrew/homebrew#12363.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
samueljohn 2012-06-04 11:36:11 +02:00 committed by Jack Nagel
parent 87543a6916
commit 212dc98003

View File

@ -876,6 +876,16 @@ def check_for_bad_python_symlink
end
end
def check_for_pydistutils_cfg_in_home
if File.exist? ENV['HOME']+'/.pydistutils.cfg' then <<-EOS.undent
A .pydistutils.cfg file was found in $HOME, which may cause Python
builds to fail. See:
http://bugs.python.org/issue6138
http://bugs.python.org/issue4655
EOS
end
end
def check_for_outdated_homebrew
return unless which 'git'
HOMEBREW_REPOSITORY.cd do