Re: Installing in a staging area

2003-09-26 Thread Schleicher Ralph (LLI)
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

Re: Installing in a staging area

2003-09-26 Thread Sander Niemeijer
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

Re: Installing in a staging area

2003-09-26 Thread Schleicher Ralph (LLI)
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

Installing in a staging area

2003-09-25 Thread Charles Gagnon
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