Sander Niemeijer writes:
> Why not use a 'make DESTDIR=/usr/local/staging/appname install'?
I installed my staged packages like that, but the error remains.
Please note that 'make DESTDIR=/foo install' works well for native
builds, but not within a cross-compilation environment. I'm quite
confid
From the Automake documentation:
"Automake generates support for the DESTDIR variable in all install
rules. DESTDIR is used during the make install step to relocate
install objects into a staging area. Each object and path is prefixed
with the value of DESTDIR before being copied into the ins
Charles Gagnon writes:
> I am having a hard time installing apps in a staging area. What I am
> trying to do is this:
>
> ./configure --prefix=/usr/local
> make
> make prefix=/usr/local/staging/appname install
>
> The purpose is to package everything in /usr/local/staging/appname
> to be later i
Help!
I am having a hard time installing apps in a staging area. What I am
trying to do is this:
./configure --prefix=/usr/local
make
make prefix=/usr/local/staging/appname install
The purpose is to package everything in /usr/local/staging/appname
to be later installed in /usr/local on multip