Re: [OE-core] [PATCH 00/12] Remove invalid sed command

2015-07-10 Thread Christopher Larson
On Fri, Jul 10, 2015 at 12:14 AM, Robert Yang wrote: > The sed doesn't return false when miss match, I use a rough wrapper to > find out the mis matches: > > 1) s/sed -i/mysed -i/ in the recipes > $ find meta -name '*.bbclass' -o -name '*.bb' -o -name '*.inc' -exec sed > -i 's/[[:space:]]sed -i

[OE-core] [PATCH 00/12] Remove invalid sed command

2015-07-10 Thread Robert Yang
The sed doesn't return false when miss match, I use a rough wrapper to find out the mis matches: 1) s/sed -i/mysed -i/ in the recipes $ find meta -name '*.bbclass' -o -name '*.bb' -o -name '*.inc' -exec sed -i 's/[[:space:]]sed -i/ mysed -i/g' {} \; 2) Add mysed to tmp/sysroots/x86_64-linux/us