Browse Source

fix documentation about manually compiling Ruby

./configure doesn't exist by default in repo: use autoconf to create it.
pull/360/head^2
Joe Atzberger 13 years ago
committed by Mislav Marohnić
parent
commit
0a9e2baef1
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      README.md

+ 3
- 1
README.md View File

@ -122,8 +122,10 @@ easy to fork and contribute any changes back upstream.
$ exec $SHELL -l
5. Install Ruby versions into `~/.rbenv/versions`. For example, to
install Ruby 1.9.3-p327, download and unpack the source, then run:
install Ruby 1.9.2-p327, download and unpack the [source](https://github.com/ruby/ruby),
then run:
$ [ -f ./configure ] || autoconf
$ ./configure --prefix=$HOME/.rbenv/versions/1.9.3-p327
$ make
$ make install

Loading…
Cancel
Save