Re: [OE-core] [PATCH] coreutils: remove dependency on coreutils-native

2013-01-17 Thread Richard Purdie
On Thu, 2013-01-17 at 14:15 +0800, Jesse Zhang wrote: On 01/17/2013 01:37 PM, Kamble, Nitin A wrote: This is bit old (out of my cached memory), but looking at my commit (543577c25b5a4e89a3ab15ee28e754b71c2a43d5) the dependency on coreutils-native is needed if the build system does not

Re: [OE-core] [PATCH] coreutils: remove dependency on coreutils-native

2013-01-16 Thread Richard Purdie
On Tue, 2013-01-15 at 15:16 +0800, Jesse Zhang wrote: If coreutils-native is built, it will replace the host commands and will in parallel builds cause such errors: make[6]: execvp: rm: Text file busy libtool: ...tmp/sysroots/x86_64-linux//bin/mv: Text file busy Remove the

Re: [OE-core] [PATCH] coreutils: remove dependency on coreutils-native

2013-01-16 Thread Jesse Zhang
On 01/16/2013 07:59 PM, Richard Purdie wrote: Two questions: 1) Why do we have this dependency here at all? Are we sure we don't need it for some reasons? It was introduced in this commit, Cc'ing Nitin. commit 543577c25b5a4e89a3ab15ee28e754b71c2a43d5 Author: Nitin A Kamble

Re: [OE-core] [PATCH] coreutils: remove dependency on coreutils-native

2013-01-16 Thread Kamble, Nitin A
-core@lists.openembedded.org Subject: Re: [OE-core] [PATCH] coreutils: remove dependency on coreutils- native On 01/16/2013 07:59 PM, Richard Purdie wrote: Two questions: 1) Why do we have this dependency here at all? Are we sure we don't need it for some reasons? It was introduced

Re: [OE-core] [PATCH] coreutils: remove dependency on coreutils-native

2013-01-16 Thread Jesse Zhang
On 01/17/2013 01:37 PM, Kamble, Nitin A wrote: This is bit old (out of my cached memory), but looking at my commit (543577c25b5a4e89a3ab15ee28e754b71c2a43d5) the dependency on coreutils-native is needed if the build system does not have coreutils, or it is not compatible with the sources of

[OE-core] [PATCH] coreutils: remove dependency on coreutils-native

2013-01-15 Thread Jesse Zhang
Hi, In builds that exclude GPLv3 packages, such errors will frequently appear: make[6]: execvp: rm: Text file busy Or libtool: ...tmp/sysroots/x86_64-linux//bin/mv: Text file busy And some others in various forms. It's caused by coreutils-6.9's dependency on coreutils-native, which

[OE-core] [PATCH] coreutils: remove dependency on coreutils-native

2013-01-15 Thread Jesse Zhang
If coreutils-native is built, it will replace the host commands and will in parallel builds cause such errors: make[6]: execvp: rm: Text file busy libtool: ...tmp/sysroots/x86_64-linux//bin/mv: Text file busy Remove the dependency and always use the host version. Signed-off-by: Jesse