Created
October 2, 2012 06:55
-
-
Save brainopia/3816929 to your computer and use it in GitHub Desktop.
Fix readline/openssl extension
This file contains hidden or 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
cd $rvm_path/src/${MY_RUBY_HOME##*/}/ext/openssl | |
rvm pkg install openssl | |
ruby extconf.rb -- --with-openssl-dir="$rvm_path/usr" | |
make install | |
cd $rvm_path/usr/ssl | |
curl http://curl.haxx.se/ca/cacert.pem > cert.pem |
This file contains hidden or 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
cd $rvm_path/src/${MY_RUBY_HOME##*/}/ext/readline | |
rvm pkg install readline | |
ruby extconf.rb -- --with-readline-dir="$rvm_path/usr" | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment