>>>>> "Scott" == Grosch, Scott <[EMAIL PROTECTED]> 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