[OE-core] [OE-Core][PATCH] gcc-4.7: Fix incorrect warning with -Wcast-qual

2013-03-10 Thread Khem Raj
This patch backport the fix where -Wcast-qual reports a bogus warning with 4.7.2, There is no workaround in code that can be done to avoid it hence the fix to gcc is backported. Signed-off-by: Khem Raj --- meta/recipes-devtools/gcc/gcc-4.7.inc |3 +- .../gcc/gcc-4.7/wcast-qual-P

[OE-core] [PATCH 1/1] insane.bbclass: make do_package_qa be a task

2013-03-10 Thread Kang Kai
do_package_qa is added to variable PACKAGEFUNCS and run after do_package. packaging tests should not ending up in package.bbclass. Split do_package_qa as a new task after do_package. [YOCTO #3190] Signed-off-by: Kang Kai --- meta/classes/insane.bbclass | 15 +-- 1 files changed, 1

[OE-core] [RFC PATCH 0/1] Split do_package_qa in insane.bbclass to be a new task

2013-03-10 Thread Kang Kai
Hi Richard, This patch is try to accomplish Yocto #3190, and you said: " The sanity tests in insane.bbclass need refactoring to make it easier to extend. In particular, some packaging tests are currently ending up in package.bbclass. These should be in insane.bbclass with hooks added as appropria

[OE-core] [OE-Core[PATCH V2] libtirpc: Fix build on uclibc

2013-03-10 Thread Khem Raj
Last upgrade of libtirpc broke the uclibc specific patch. So lets refresh it and make it compile for uclibc again Signed-off-by: Khem Raj --- .../libtirpc-0.2.3/remove-des-uclibc.patch | 45 1 file changed, 18 insertions(+), 27 deletions(-) diff --git a/meta/reci

[OE-core] [OE-Core][PATCH] sudo: Compile mksigname and mksiglist for build host

2013-03-10 Thread Khem Raj
cross compiling sudo doesnt work well since it uses mksigname and mksiglist to generate C sources which are then used in sudo build itself. With this patch now we make sure those hosttools are compiled for build machine. It fixes the build failures like ./mksigname > signame.c /bin/sh: ./mksigname

Re: [OE-core] [PATCH] cracklib: Generate compiled dict using default dictionary

2013-03-10 Thread Colin Walters
On Sat, 2013-03-09 at 06:34 +, Richard Purdie wrote: > The patch doesn't quite do what you think it does. The _appends() stack, > not override and hence the native append is empty. You probably want to > do a: > > do_install_append_class-target () { > > } Ah, thanks. Something like thi