Mail Archives: djgpp/1998/08/30/11:08:22
On Sun, 30 Aug 1998, Peter J. Farley III wrote:
> I have found the place in configure where the absolute path is set, it
> uses `pwd`.
I think if you do NOT set PATH_SEPARATOR=:, `pwd` will return the normal
DOS-style path like h:/foo/bar, and everything will work.
If you need to set PATH_SEPARATOR=: elsewhere in the script/Makefile,
just unset it on the particular command line that calls `pwd`.
Alternatively, you could replace `pwd` with something like this:
`pwd | sed -e s,^//\([A-z]\)/,\1:/,`
- Raw text -