Date: Sun, 30 Aug 1998 18:07:47 +0300 (IDT) From: Eli Zaretskii To: "Peter J. Farley III" cc: djgpp AT delorie DOT com Subject: Re: Subtle bash/ls/environment bug? In-Reply-To: <35e8e758.51804564@news1.banet.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk 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:/,`