diff options
| author | samueljohn | 2012-05-21 21:04:59 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2012-05-23 06:44:09 -0700 |
| commit | 1f47cfdb645bcd400bb060178521a0590d836655 (patch) | |
| tree | 9432a2588adc29745723cda8a4737713ff504e82 /Library/Formula/python.rb | |
| parent | 50ad7cac01af3f755e0e79bcad568f47a6a5eb51 (diff) | |
| download | homebrew-1f47cfdb645bcd400bb060178521a0590d836655.tar.bz2 | |
python: caveats tell the correct Framework links
The old ~/Frameworks is and never was a standard.
It should be under Library.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/python.rb')
| -rw-r--r-- | Library/Formula/python.rb | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Library/Formula/python.rb b/Library/Formula/python.rb index 3f453e134..ba0fe64b6 100644 --- a/Library/Formula/python.rb +++ b/Library/Formula/python.rb @@ -112,10 +112,12 @@ class Python < Formula Framework Python was installed to: #{prefix}/Frameworks/Python.framework - You may want to symlink this Framework to a standard OS X location, - such as: - mkdir ~/Frameworks - ln -s "#{prefix}/Frameworks/Python.framework" ~/Frameworks + You may want to symlink this Framework to a standard OS X location: + mkdir -p ~/Library/Frameworks/Python.framework/Versions + ln -s "#{prefix}/Frameworks/Python.framework/Versions/2.7" ~/Library/Frameworks/Python.framework/Versions/2.7 + ln -s ~/Library/Frameworks/Python.framework/Versions/2.7 ~/Library/Frameworks/Python.framework/Versions/Current + ln -s ~/Library/Frameworks/Python.framework/Versions/2.7/Python ~/Library/Frameworks/Python.framework/Python + ln -s ~/Library/Frameworks/Python.framework/Versions/2.7/Resources ~/Library/Frameworks/Python.framework/Resources EOS general_caveats = <<-EOS.undent |
