[vlc-devel] Re: vlc: svn commit r18439 (courmisch)
    Marian Durkovic 
    md at bts.sk
       
    Fri Dec 22 08:57:44 CET 2006
    
    
  
> r18439 | courmisch | 2006-12-21 19:05:54 +0100 (Thu, 21 Dec 2006) | 4 lines
> Changed paths:
>   M /trunk/configure.ac
>
> Escape antislash in CONFIGURE_LINE properly (I hope you like antislashes).
>                                    ^^^^^^^^
>                    As far as I checked (sed guru required).
You still have one backslash less than required.
sed needs:
sed -e 's/\\/\\\\/g'
and since you're in command substitution quotes, you must double each 
backslash again:
CONFIGURE_LINE=`echo "$0 $ac_configure_args" | sed -e 's/\\\\/\\\\\\\\/g'`
Outer double quotes are not needed.
	With kind regards,
		M.
--------------------------------------------------------------------------
----                                                                  ----
----   Marian Durkovic                       network  manager         ----
----                                                                  ----
----   Slovak Technical University           Tel: +421 2 524 51 301   ----
----   Computer Centre, Nam. Slobody 17      Fax: +421 2 524 94 351   ----
----   812 43 Bratislava, Slovak Republic    E-mail/sip: md at bts.sk    ----
----                                                                  ----
--------------------------------------------------------------------------
-- 
This is the vlc-devel mailing-list, see http://www.videolan.org/vlc/
To unsubscribe, please read http://developers.videolan.org/lists.html
    
    
More information about the vlc-devel
mailing list