Skip to content

Commit

Permalink
Bugfix: Don't source libraries, it's now external. Thanks Jimmy Baker.
Browse files Browse the repository at this point in the history
  • Loading branch information
wayneeseguin committed Feb 26, 2010
1 parent 225b50e commit 16ec854
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/manage
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ original_ruby_string=$rvm_ruby_string
source $rvm_scripts_path/initialize
source $rvm_scripts_path/utility
source $rvm_scripts_path/selector
source $rvm_scripts_path/libraries

trap "rm -f $rvm_tmp_path/$$* > /dev/null 2>&1 ; exit" 0 1 2 3 15

Expand Down Expand Up @@ -113,7 +112,9 @@ __rvm_install_ruby() {
macruby)
if [[ "Darwin" = "$(uname)" ]] ; then
if [[ "$rvm_head_flag" = 1 ]] ; then
if [[ ! -z "$rvm_llvm_flag" ]] ; then __rvm_install_llvm ; fi
if [[ ! -z "$rvm_llvm_flag" ]] ; then
$rvm_scripts_path/libraries llvm install
fi
macruby_path="/usr/local/bin"
# TODO: configure & make variables should be set here.
rvm_ruby_configure=" true "
Expand Down Expand Up @@ -1013,3 +1014,4 @@ __rvm_manage_rubies() {
rvm_action="$1" ; rubies_string="$2"
__rvm_manage_rubies
exit $?

0 comments on commit 16ec854

Please sign in to comment.