Re: VPATH of the form C:/foo
Brian Dessent <[email protected]>
| Newsgroups | gmane.comp.gnu.make.windows |
|---|---|
| Organization | My own little world... |
| Message-ID | <[email protected]> |
Benoit Sigoure wrote: > Everything works fine excepted that when I use a VPATH of the form C:/ > something, the files in the source tree are not found because make / > seems/ to separate the VPATH with colons. I believed that, on > Windows, the VPAH would be semi-colon separated, but maybe I was wrong. > > Is this a known bug? Or unsupported? Cygwin is supposed to be POSIX-like, so colons are the correct separator. It would be wrong to use semicolons. It seems you've stumbed into a corner case of how to support both POSIX and Win32 path semantics at the same time. Can't you just use a space instead? Brian