Skip to content

Commit

Permalink
Only do 'make' not configure for JRuby < 1.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
wayneeseguin committed Feb 25, 2010
1 parent 494e562 commit a03514f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/manage
Expand Up @@ -370,7 +370,11 @@ RubyWrapper
if [[ ! -z "$rvm_head_flag" ]] ; then __rvm_run "ant.dist" "ant dist" "Running 'ant dist' (this could take a few minutes) ..." ; fi if [[ ! -z "$rvm_head_flag" ]] ; then __rvm_run "ant.dist" "ant dist" "Running 'ant dist' (this could take a few minutes) ..." ; fi


mkdir -p "$rvm_ruby_home/bin/" mkdir -p "$rvm_ruby_home/bin/"
__rvm_run "nailgun" "builtin cd \"$rvm_ruby_src_path/tool/nailgun\" && ./configure --prefix=$rvm_ruby_home && make $rvm_make_flags" "Building Nailgun" if $rvm_scripts_path/match "$rvm_ruby_version" "1\.3" || $rvm_scripts_path/match "$rvm_ruby_version" "1\.2" ; then
__rvm_run "nailgun" "builtin cd \"$rvm_ruby_src_path/tool/nailgun\" && make $rvm_make_flags" "Building Nailgun"
else
__rvm_run "nailgun" "builtin cd \"$rvm_ruby_src_path/tool/nailgun\" && ./configure --prefix=$rvm_ruby_home && make $rvm_make_flags" "Building Nailgun"
fi


__rvm_pushpop __rvm_pushpop


Expand Down

0 comments on commit a03514f

Please sign in to comment.