[oe] [meta-oe][PATCH 0/4] host-user-contaminated fixes for meta-oe

2016-01-14 Thread Yi Zhao
The following changes since commit 73af5c278f6617149a46b2d2a1549bc154fa79e5: mime-construct: Perform more mangling for perl path (2016-01-06 13:27:21 +0100) are available in the git repository at: git://git.openembedded.org/meta-openembedded-contrib yzhao/4-fixes

Re: [oe] [meta-oe][PATCH 0/4] host-user-contaminated fixes for meta-oe

2016-01-14 Thread Mike Looijmans
Instead of patching things up with chown, you could also instruct the "cp" command to not attempt to preserve ownership (the -a and -p options will do that). Instead of "cp -r -p ..." use "cp -r --preserve=mode,links ..." Instead of "cp -a ..." use "cp -R --no-dereference

Re: [oe] [meta-oe][PATCH 0/4] host-user-contaminated fixes for meta-oe

2016-01-14 Thread Yi Zhao
在 2016年01月14日 18:21, Mike Looijmans 写道: Instead of patching things up with chown, you could also instruct the "cp" command to not attempt to preserve ownership (the -a and -p options will do that). Instead of "cp -r -p ..." use "cp -r --preserve=mode,links ..." Instead of "cp -a ..." use