fix documentation about manually compiling Ruby

./configure doesn't exist by default in repo: use autoconf to create it.
This commit is contained in:
Joe Atzberger 2012-12-11 20:35:30 -05:00 committed by Mislav Marohnić
parent da562ad74c
commit 0a9e2baef1

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