* [guile-lib] configure: error: expected an absolute directory name for --prefix: ...
@ 2011-05-25 23:32 Bernardo Ezequiel Contreras
2011-05-26 8:44 ` Andy Wingo
0 siblings, 1 reply; 4+ messages in thread
From: Bernardo Ezequiel Contreras @ 2011-05-25 23:32 UTC (permalink / raw)
To: bug-guile
[-- Attachment #1: Type: text/plain, Size: 791 bytes --]
hi all,
it tried the following steps from the developers page (
http://www.nongnu.org/guile-lib/dev/):
git clone git://git.sv.gnu.org/guile-lib.git guile-lib
cd guile-lib
./autogen.sh --prefix=... && make
but i get this
vonbecmann@vonbecmann-System-Name:~/Downloads/guile-lib$ ./autogen.sh
--prefix=... && make
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
autoreconf: configure.ac: tracing
autoreconf: configure.ac: not using Libtool
autoreconf: running: /usr/bin/autoconf --force
autoreconf: configure.ac: not using Autoheader
autoreconf: running: automake --add-missing --copy --force-missing
autoreconf: Leaving directory `.'
configure: error: expected an absolute directory name for --prefix: ...
Thanks
[-- Attachment #2: Type: text/html, Size: 1136 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [guile-lib] configure: error: expected an absolute directory name for --prefix: ...
2011-05-25 23:32 [guile-lib] configure: error: expected an absolute directory name for --prefix: Bernardo Ezequiel Contreras
@ 2011-05-26 8:44 ` Andy Wingo
2011-05-27 1:41 ` Bernardo Ezequiel Contreras
0 siblings, 1 reply; 4+ messages in thread
From: Andy Wingo @ 2011-05-26 8:44 UTC (permalink / raw)
To: Bernardo Ezequiel Contreras; +Cc: bug-guile
Hi Bernardo,
On Thu 26 May 2011 01:32, Bernardo Ezequiel Contreras <vonbecmann@gmail.com> writes:
> it tried the following steps from the developers page (http://www.nongnu.org/guile-lib/dev/):
>
> git clone git://git.sv.gnu.org/guile-lib.git guile-lib
>
> cd guile-lib
> ./autogen.sh --prefix=... && make
Here the "..." is intended to be replaced by the prefix that you have
Guile installed in.
For example,
./autogen.sh --prefix=/usr/local && make
Happy hacking,
Andy
--
http://wingolog.org/
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [guile-lib] configure: error: expected an absolute directory name for --prefix: ...
2011-05-26 8:44 ` Andy Wingo
@ 2011-05-27 1:41 ` Bernardo Ezequiel Contreras
2011-05-29 20:22 ` Andreas Rottmann
0 siblings, 1 reply; 4+ messages in thread
From: Bernardo Ezequiel Contreras @ 2011-05-27 1:41 UTC (permalink / raw)
To: bug-guile
[-- Attachment #1.1: Type: text/plain, Size: 695 bytes --]
On Thu, May 26, 2011 at 5:44 AM, Andy Wingo <wingo@pobox.com> wrote:
> Hi Bernardo,
>
> On Thu 26 May 2011 01:32, Bernardo Ezequiel Contreras <
> vonbecmann@gmail.com> writes:
>
> > it tried the following steps from the developers page (
> http://www.nongnu.org/guile-lib/dev/):
> >
> > git clone git://git.sv.gnu.org/guile-lib.git guile-lib
> >
> > cd guile-lib
> > ./autogen.sh --prefix=... && make
>
> Here the "..." is intended to be replaced by the prefix that you have
> Guile installed in.
>
> For example,
>
> ./autogen.sh --prefix=/usr/local && make
>
> Happy hacking,
>
> Andy
> --
> http://wingolog.org/
>
in my ubuntu 10.10 box is
./autogen.sh --prefix=/usr && make
thanks![?]
[-- Attachment #1.2: Type: text/html, Size: 1483 bytes --]
[-- Attachment #2: 328.png --]
[-- Type: image/png, Size: 569 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [guile-lib] configure: error: expected an absolute directory name for --prefix: ...
2011-05-27 1:41 ` Bernardo Ezequiel Contreras
@ 2011-05-29 20:22 ` Andreas Rottmann
0 siblings, 0 replies; 4+ messages in thread
From: Andreas Rottmann @ 2011-05-29 20:22 UTC (permalink / raw)
To: Bernardo Ezequiel Contreras; +Cc: bug-guile
Bernardo Ezequiel Contreras <vonbecmann@gmail.com> writes:
> On Thu, May 26, 2011 at 5:44 AM, Andy Wingo <wingo@pobox.com> wrote:
>
>> Hi Bernardo,
>>
>> On Thu 26 May 2011 01:32, Bernardo Ezequiel Contreras <
>> vonbecmann@gmail.com> writes:
>>
>> > it tried the following steps from the developers page (
>> http://www.nongnu.org/guile-lib/dev/):
>> >
>> > git clone git://git.sv.gnu.org/guile-lib.git guile-lib
>> >
>> > cd guile-lib
>> > ./autogen.sh --prefix=... && make
>>
>> Here the "..." is intended to be replaced by the prefix that you have
>> Guile installed in.
>>
>> For example,
>>
>> ./autogen.sh --prefix=/usr/local && make
>>
>> Happy hacking,
>>
>> Andy
>> --
>> http://wingolog.org/
>>
>
> in my ubuntu 10.10 box is
>
> ./autogen.sh --prefix=/usr && make
>
> thanks![?]
>
This is potentially dangerous, and generally not a good idea: /usr is
reserved for the distribution's package manager, and the system
adminstrator (i.e. you) should not install software there; that's what
/usr/local (and /opt) is for. See the FHS[0] (specifically, [1]) for
more information about filesystem layout on GNU/Linux systems.
[0] http://www.pathname.com/fhs/pub/fhs-2.3.html
[1] http://www.pathname.com/fhs/pub/fhs-2.3.html#USRLOCALLOCALHIERARCHY
Regards, Rotty
--
Andreas Rottmann -- <http://rotty.yi.org/>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-05-29 20:22 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-25 23:32 [guile-lib] configure: error: expected an absolute directory name for --prefix: Bernardo Ezequiel Contreras
2011-05-26 8:44 ` Andy Wingo
2011-05-27 1:41 ` Bernardo Ezequiel Contreras
2011-05-29 20:22 ` Andreas Rottmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).