automake-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] depcomp: add new one-pass depmode for MSVC 7 and later.


From: Peter Rosin
Subject: Re: [PATCH] depcomp: add new one-pass depmode for MSVC 7 and later.
Date: Thu, 07 Oct 2010 09:57:40 +0200
User-agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.9) Gecko/20100915 Thunderbird/3.1.4

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]