Re: [OE-core] [PATCH 1/1] subversion: improve the regex of sed command of SVN_SERF_INCLUDES macro

2015-07-08 Thread Martin Jansa
On Wed, Jul 08, 2015 at 05:03:40PM +0800, Kai Kang wrote: [Yocto #7474] The regex of sed command is too simple, which mangles any -D in strings, for example, a project name is My-Demo, it will be removed from the path by the sed regex, which causes a build failure. Improving it to only

[OE-core] [PATCH 1/1] subversion: improve the regex of sed command of SVN_SERF_INCLUDES macro

2015-07-08 Thread Kai Kang
[Yocto #7474] The regex of sed command is too simple, which mangles any -D in strings, for example, a project name is My-Demo, it will be removed from the path by the sed regex, which causes a build failure. Improving it to only delete the -D behind of a space or the -D at start of a string.

Re: [OE-core] [PATCH 1/1] subversion: improve the regex of sed command of SVN_SERF_INCLUDES macro

2015-07-08 Thread Kang Kai
On 2015年07月08日 18:36, Martin Jansa wrote: On Wed, Jul 08, 2015 at 05:03:40PM +0800, Kai Kang wrote: [Yocto #7474] The regex of sed command is too simple, which mangles any -D in strings, for example, a project name is My-Demo, it will be removed from the path by the sed regex, which causes a