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
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
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
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
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
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