Re: DESTDIR support for make install

2002-01-31 Thread Alexandre Julliard
Bernhard Rosenkraenzer [EMAIL PROTECTED] writes: wine currently doesn't support the DESTDIR flag commonly used by packagers. The patch I've attached fixes this. Could you explain this a bit more? Why can't you use the existing $prefix to do the same thing? -- Alexandre Julliard [EMAIL

Re: DESTDIR support for make install

2002-01-31 Thread Joerg Mayer
On Thu, Jan 31, 2002 at 01:09:28PM -0800, Alexandre Julliard wrote: wine currently doesn't support the DESTDIR flag commonly used by packagers. The patch I've attached fixes this. Could you explain this a bit more? Why can't you use the existing $prefix to do the same thing? When

Re: DESTDIR support for make install

2002-01-31 Thread Alexandre Julliard
Joerg Mayer [EMAIL PROTECTED] writes: So changing prefix is not the way to go. DESTDIR allows to do the install via DESTDIR=/home/myaccount/rpms/tmp make install instead of doing all the steps from make install manually. But make install prefix=/home/myaccount/rpms/tmp should do exactly the

Re: DESTDIR support for make install

2002-01-31 Thread Daniel Sabo
On Thu, 31 Jan 2002 13:09:28 -0800, Alexandre Julliard wrote: Bernhard Rosenkraenzer [EMAIL PROTECTED] writes: wine currently doesn't support the DESTDIR flag commonly used by packagers. The patch I've attached fixes this. Could you explain this a bit more? Why can't you use the

Re: DESTDIR support for make install

2002-01-31 Thread Joerg Mayer
On Thu, Jan 31, 2002 at 02:33:53PM -0800, Alexandre Julliard wrote: But make install prefix=/home/myaccount/rpms/tmp should do exactly the same thing, unless I missed something. You can run make with one prefix and make install with another one, that's a feature. I didn't know about this

Re: DESTDIR support for make install

2002-01-31 Thread David Elliott
On 2002.01.31 17:52 Joerg Mayer wrote: On Thu, Jan 31, 2002 at 02:33:53PM -0800, Alexandre Julliard wrote: But make install prefix=/home/myaccount/rpms/tmp should do exactly the same thing, unless I missed something. You can run make with one prefix and make install with another one,