Created
March 13, 2012 13:58
-
-
Save rponte/2028926 to your computer and use it in GitHub Desktop.
Reconfiguring JDK 1.5 on MacOSX after MacOSX's self-update
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Move jdk 1.5.x folder to your System java folder (password needed) | |
sudo mv jdk_1.5.0 /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0-leopard | |
# Tell OS X that java 5 actually is java 5 | |
cd /System/Library/Frameworks/JavaVM.framework/Versions/ | |
sudo rm 1.5.0 | |
sudo ln -s 1.5.0-leopard 1.5.0 | |
sudo rm 1.5 | |
sudo ln -s 1.5.0 1.5 | |
# more details, http://wiki.oneswarm.org/index.php/OS_X_10.6_Snow_Leopard |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment