Re: Problems with Make, VPATH and MS-DOS paths

2003-11-19 Thread Nate Bohlmann
Thanks everyone for your help. Turns out that the backquoting specified here won't work to a shell incompatibility (I don't care to fix this now). However, $(shell ... ) does work so thanks. Nate 11/18/03 11:35:07 AM, Shankar Unni <[EMAIL PROTECTED]> wrote: >Nate Bohlmann wrote: > >> How exa

RE: Problems with Make, VPATH and MS-DOS paths

2003-11-19 Thread Jörg Schaible
Nate Bohlmann wrote on Monday, November 17, 2003 5:53 PM: > Hi, > I'm having a problem getting MS-DOS paths to work properly with > VPATH under GNU Make 3.80. The problem is that the VPATH processing > tacks on a Unix path separator ('/') to the end of the VPATH giving > me a source file name s

Re: Problems with Make, VPATH and MS-DOS paths

2003-11-18 Thread Shankar Unni
Nate Bohlmann wrote: > How exactly does a command line tool help with VPATH'ing inside of Make? You use cygpath to generate names to pass to your broken compiler. (Yes, broken - Win32, and most tools running on it like VC++, are perfectly happy with "/" as path separators). I.e. instead of just

RE: Problems with Make, VPATH and MS-DOS paths

2003-11-18 Thread Hannu E K Nevalainen
> From: Nate Bohlmann > Sent: Monday, November 17, 2003 8:53 PM > 11/17/03 12:31:23 PM, Hannu E K Nevalainen > <[EMAIL PROTECTED]> wrote: > > >> From: Nate Bohlmann > >> Sent: Monday, November 17, 2003 5:53 PM > > > >> Hi, > >> I'm having a problem getting MS-DOS paths to work properly with > >>

Re: RE: Problems with Make, VPATH and MS-DOS paths

2003-11-17 Thread Nate Bohlmann
11/17/03 12:31:23 PM, Hannu E K Nevalainen <[EMAIL PROTECTED]> wrote: >> From: Nate Bohlmann >> Sent: Monday, November 17, 2003 5:53 PM > >> Hi, >> I'm having a problem getting MS-DOS paths to work properly with >> VPATH under >> GNU Make 3.80. The problem is that the VPATH processing tacks on

RE: Problems with Make, VPATH and MS-DOS paths

2003-11-17 Thread Hannu E K Nevalainen
> From: Nate Bohlmann > Sent: Monday, November 17, 2003 5:53 PM > Hi, > I'm having a problem getting MS-DOS paths to work properly with > VPATH under > GNU Make 3.80. The problem is that the VPATH processing tacks on > a Unix path > separator ('/') to the end of the VPATH giving me a source fil

Problems with Make, VPATH and MS-DOS paths

2003-11-17 Thread Nate Bohlmann
Hi, I'm having a problem getting MS-DOS paths to work properly with VPATH under GNU Make 3.80. The problem is that the VPATH processing tacks on a Unix path separator ('/') to the end of the VPATH giving me a source file name something similar to code\src\fw/foo.c. This is a significant pro