> From: Vincent Belaïche <[email protected]> > Date: Thu, 17 Apr 2025 20:08:18 +0000 > > --- a/util/texi2dvi > +++ b/util/texi2dvi > @@ -81,12 +81,20 @@ IFS="$space$tab$newline" > > if test -n "$COMSPEC$ComSpec" \ > && uname | $EGREP -iv 'cygwin|msys' >/dev/null \ > - && test "$OSTYPE" != msys ; then > + && test "$OSTYPE" != msys \ > + && test "$OSTYPE" != cygwin ; then > path_sep=";" > else > path_sep=":" > fi
Doesn't this part mean that the patch will also affect running texi2dvi on Cygwin? If so, we need someone who can test this on Cygwin to make sure we don't break it. I also don't think I understand the exe_ext thing. Doesn't using WSL mean you run Unix shell and Unix executables on Windows? if so, why is the explicit .exe extension needed?
