Den 2010-10-06 17:55 skrev Peter Rosin: > @@ -90,10 +90,18 @@ if test "$depmode" = msvcmsys; then > # This is just like msvisualcpp but w/o cygpath translation. > # Just convert the backslash-escaped backslashes to single forward > # slashes to satisfy depend.m4 > - cygpath_u="sed s,\\\\\\\\,/,g" > + cygpath_u='sed s,\\\\,/,g' > depmode=msvisualcpp > fi > > +if test "$depmode" = msvc7msys; then > + # This is just like msvc7 but w/o cygpath translation. > + # Just convert the backslashes to forward slashes to satisfy > + # depend.m4 > + cygpath_u='sed s,\\\\,/,g' > + depmode=msvc7 > +fi
The above comment should be the same as the one in the previous block. I'm fixing locally, in wait for a review. Cheers, Peter