[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Newbie trying to use/install on Fedora 5
From: |
Ludovic Courtès |
Subject: |
Re: Newbie trying to use/install on Fedora 5 |
Date: |
Thu, 20 Apr 2006 09:25:15 +0200 |
User-agent: |
Gnus/5.110004 (No Gnus v0.4) Emacs/21.4 (gnu/linux) |
Hi,
Olwe Bottorff <address@hidden> writes:
> Is there a way to install
> 1.8 into a sandbox of sorts?
As with all GNU software, you can choose a different installation path
and maybe even a different executable suffix to make sure that your two
versions of Guile can coexist. For example:
$ ./configure --program-suffix=-1.8 && make
This will put Guile in (subdirs of) `/usr/local' and all its executables
(i.e., `guile', `guile-config', `guile-tools', etc.) will have a name
suffixed by `-1.8'. This way, you can keep your hand-compiled 1.8 along
with the package-provided 1.6.
Thanks,
Ludovic.