Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/1] nativesdk-ncurses 5.9: files were installed but not shipped
@ 2012-10-23 13:12 Robert Yang
  2012-10-23 13:12 ` [PATCH 1/1] " Robert Yang
  2012-10-24 14:59 ` [PATCH 0/1] " Saul Wold
  0 siblings, 2 replies; 3+ messages in thread
From: Robert Yang @ 2012-10-23 13:12 UTC (permalink / raw)
  To: openembedded-core; +Cc: Zhenfeng.Zhao

Test info:
$ bitbake core-image-sato meta-toolchain-sdk

There is no warning about "nativesdk-ncurses: files were installed but
not shipped"

// Robert

The following changes since commit b0187d2ba864a5a218effa01e4ddb23ade40c7e2:

  oe-buildenv-internal: break BB_ENV_EXTRAWHITE into small pieces (2012-10-23 14:00:14 +0800)

are available in the git repository at:
  git://git.pokylinux.org/poky-contrib robert/ncurses
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=robert/ncurses

Robert Yang (1):
  nativesdk-ncurses 5.9: files were installed but not shipped

 meta/recipes-core/ncurses/ncurses.inc |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)




^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 1/1] nativesdk-ncurses 5.9: files were installed but not shipped
  2012-10-23 13:12 [PATCH 0/1] nativesdk-ncurses 5.9: files were installed but not shipped Robert Yang
@ 2012-10-23 13:12 ` Robert Yang
  2012-10-24 14:59 ` [PATCH 0/1] " Saul Wold
  1 sibling, 0 replies; 3+ messages in thread
From: Robert Yang @ 2012-10-23 13:12 UTC (permalink / raw)
  To: openembedded-core; +Cc: Zhenfeng.Zhao

There is an warning:

$ bitbake nativesdk-ncurses

WARNING: QA Issue: nativesdk-ncurses: Files/directories were installed
but not shipped
  /opt/poky/1.3+snapshot/sysroots/i686-pokysdk-linux/usr/bin/clear.ncurses
  /opt/poky/1.3+snapshot/sysroots/i686-pokysdk-linux/usr/bin/reset.ncurses
NOTE: Tasks Summary: Attempted 533 tasks of which 521 didn't need to be
rerun and all succeeded.

And there is no clear or reset tool in the SDK.

This is caused by:
ALTERNATIVE_ncurses-tools = "clear reset"

It creates clear.ncurses and reset.ncurses which are used for avoiding
the conflicts with the target busybox, but SDK doesn't need them since
there is no nativesdk-busybox (then no conflicts), so:

ALTERNATIVE_ncurses-tools_class-target = "clear reset"

will fix the problem.

[YOCTO #3325]

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-core/ncurses/ncurses.inc |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-core/ncurses/ncurses.inc b/meta/recipes-core/ncurses/ncurses.inc
index ed7f001..cce080d 100644
--- a/meta/recipes-core/ncurses/ncurses.inc
+++ b/meta/recipes-core/ncurses/ncurses.inc
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://ncurses/base/version.c;beginline=1;endline=27;md5=cbc
 SECTION = "libs"
 DEPENDS = "ncurses-native"
 DEPENDS_virtclass-native = ""
-INC_PR = "r11"
+INC_PR = "r12"
 
 inherit autotools binconfig multilib_header
 
@@ -218,7 +218,7 @@ inherit update-alternatives
 
 ALTERNATIVE_PRIORITY = "100"
 
-ALTERNATIVE_ncurses-tools = "clear reset"
+ALTERNATIVE_ncurses-tools_class-target = "clear reset"
 
 BBCLASSEXTEND = "native nativesdk"
 
-- 
1.7.1




^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 0/1] nativesdk-ncurses 5.9: files were installed but not shipped
  2012-10-23 13:12 [PATCH 0/1] nativesdk-ncurses 5.9: files were installed but not shipped Robert Yang
  2012-10-23 13:12 ` [PATCH 1/1] " Robert Yang
@ 2012-10-24 14:59 ` Saul Wold
  1 sibling, 0 replies; 3+ messages in thread
From: Saul Wold @ 2012-10-24 14:59 UTC (permalink / raw)
  To: Robert Yang; +Cc: Zhenfeng.Zhao, openembedded-core

On 10/23/2012 06:12 AM, Robert Yang wrote:
> Test info:
> $ bitbake core-image-sato meta-toolchain-sdk
>
> There is no warning about "nativesdk-ncurses: files were installed but
> not shipped"
>
> // Robert
>
> The following changes since commit b0187d2ba864a5a218effa01e4ddb23ade40c7e2:
>
>    oe-buildenv-internal: break BB_ENV_EXTRAWHITE into small pieces (2012-10-23 14:00:14 +0800)
>
> are available in the git repository at:
>    git://git.pokylinux.org/poky-contrib robert/ncurses
>    http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=robert/ncurses
>
> Robert Yang (1):
>    nativesdk-ncurses 5.9: files were installed but not shipped
>
>   meta/recipes-core/ncurses/ncurses.inc |    4 ++--
>   1 files changed, 2 insertions(+), 2 deletions(-)
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
>
Merged into OE-Core

Thanks
	Sau!




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-10-24 15:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-23 13:12 [PATCH 0/1] nativesdk-ncurses 5.9: files were installed but not shipped Robert Yang
2012-10-23 13:12 ` [PATCH 1/1] " Robert Yang
2012-10-24 14:59 ` [PATCH 0/1] " Saul Wold

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox