OS X/Snow Leo - Specify custom executable location for build/install for 1.9

Been searching via Google but nothing immediately pops up.

I'd like to run Ruby 1.9 on my mac and specify the location the
binaries install to and run from in the call to configure. What
options would I set when I execute configure so that when I run install
they go to that custom location?

My reason for this is that I just don't want to muss up the
installation that comes with Snow Leopard.

Thanks in advance.

···

--
... something witty goes here ...

read configure.in line 15 :

        AS_HELP_STRING([--with-baseruby=RUBY], [use RUBY as baseruby;
RUBY is the pathname of ruby]),

···

Joe Wangkauf <tmo1138@invalid.gmail.domain.com> wrote:

I'd like to run Ruby 1.9 on my mac and specify the location the
binaries install to and run from in the call to configure. What
options would I set when I execute configure so that when I run install
they go to that custom location?

--
« On ne peut pas dire la vérité à la télé :
il y a trop de monde qui regarde. »
(Coluche)

That has nothing to do with his question.

The real answer is that you can answer this by running `configure --help`. The option you're looking for is "--prefix". You need not do anything tho, as the default prefix is "/usr/local/" and the system/stock ruby's prefix is "/usr".

···

On Feb 5, 2010, at 22:00 , Une Bévue wrote:

Joe Wangkauf <tmo1138@invalid.gmail.domain.com> wrote:

I'd like to run Ruby 1.9 on my mac and specify the location the
binaries install to and run from in the call to configure. What
options would I set when I execute configure so that when I run install
they go to that custom location?

read configure.in line 15 :

       AS_HELP_STRING([--with-baseruby=RUBY], [use RUBY as baseruby;
RUBY is the pathname of ruby]),

In article <F5DCD1CC-5247-4833-B7CB-7816F6A1513F@zenspider.com>, Ryan

···

Davis <ryand-ruby@zenspider.com> wrote:

On Feb 5, 2010, at 22:00 , Une Bévue wrote:

> Joe Wangkauf <tmo1138@invalid.gmail.domain.com> wrote:
>
>> I'd like to run Ruby 1.9 on my mac and specify the location the
>> binaries install to and run from in the call to configure. What
>> options would I set when I execute configure so that when I run install
>> they go to that custom location?
>
> read configure.in line 15 :
>
> AS_HELP_STRING([--with-baseruby=RUBY], [use RUBY as baseruby;
> RUBY is the pathname of ruby]),

That has nothing to do with his question.

The real answer is that you can answer this by running `configure --help`.
The option you're looking for is "--prefix". You need not do anything tho, as
the default prefix is "/usr/local/" and the system/stock ruby's prefix is "/usr".

Thanks, Ryan. After updating my Readline library to version 6.0 I was
able to build Ruby 1.9 from source and deploy to a custom location
using --prefix as you mentioned.

--
... something witty goes here ...