autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: AFS installs


From: Tom Tromey
Subject: Re: AFS installs
Date: 31 Jul 2001 20:59:33 -0600

>>>>> "Scott" == Grosch, Scott <address@hidden> writes:

Scott> Has anyone written some type of AFS awareness macro for the
Scott> install piece of autoconf?  AFS uses a different path to
Scott> install into.

For this to work you would need support from your Makefile.

Automake, if you use it, provides for two possibilities.
One is DESTDIR.  This might or might not work in your case.
>From your example, I doubt it.

The other possibility is only available if the package Makefile.am is
written correctly.  The idea is to `configure' and `make all' with the
logical prefix and then `make install' with the actual prefix.

    ./configure --prefix=/usr/local
    make
    make bindir=/afs/.pdx.intel.com/local/sun4x_56/97r1/phase1 \
         ... set other install dirs here ...

I think this mode is supported by most GNU tools.

Tom



reply via email to

[Prev in Thread] Current Thread [Next in Thread]