Skip to content
Snippets Groups Projects
Commit 95d7776a authored by Adam Vandenberg's avatar Adam Vandenberg
Browse files

add check for /Library Python

Closes Homebrew/homebrew#24788.
parent 47f22d20
No related branches found
No related tags found
No related merge requests found
......@@ -948,6 +948,17 @@ def check_for_enthought_python
end
end
def check_for_library_python
if File.exist?("/Library/Frameworks/Python.framework") then <<-EOS.undent
A Python is installed in /Library/Frameworks
Homebrew only supports building against the System-provided Python or a
brewed Python. In particular, Pythons installed to /Library can interfere
with other software installs.
EOS
end
end
def check_for_old_homebrew_share_python_in_path
s = ''
['', '3'].map do |suffix|
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment