public inbox for openembedded-core@lists.openembedded.org
 help / color / mirror / Atom feed
* [PATCH 0/3] meta: 3 fixes
@ 2015-02-03  1:22 Robert Yang
  2015-02-03  1:22 ` [PATCH 1/3] valgrind: depends on boost when ptest Robert Yang
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Robert Yang @ 2015-02-03  1:22 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 818bcba063819b80d5a99827c5adb8ee157dbfe1:

  build-appliance-image: Update to master head revision (2015-02-02 14:57:40 +0000)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib rbt/3fixes
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/3fixes

Robert Yang (3):
  valgrind: depends on boost when ptest
  gcc-configure-common.inc: remove ac_cv_path_SED
  binconfig-disabled.bbclass: fix echo command

 meta/classes/binconfig-disabled.bbclass            |    2 +-
 meta/recipes-devtools/gcc/gcc-configure-common.inc |    1 -
 meta/recipes-devtools/valgrind/valgrind_3.10.1.bb  |    4 +++-
 3 files changed, 4 insertions(+), 3 deletions(-)

-- 
1.7.9.5



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

* [PATCH 1/3] valgrind: depends on boost when ptest
  2015-02-03  1:22 [PATCH 0/3] meta: 3 fixes Robert Yang
@ 2015-02-03  1:22 ` Robert Yang
  2015-02-03  1:22 ` [PATCH 2/3] gcc-configure-common.inc: remove ac_cv_path_SED Robert Yang
  2015-02-03  1:22 ` [PATCH 3/3] binconfig-disabled.bbclass: fix echo command Robert Yang
  2 siblings, 0 replies; 5+ messages in thread
From: Robert Yang @ 2015-02-03  1:22 UTC (permalink / raw)
  To: openembedded-core

Fixed:
drd/tests/boost_thread.cpp:5:38: fatal error: boost/thread/condition.hpp: No such file or directory
 #include <boost/thread/condition.hpp>

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-devtools/valgrind/valgrind_3.10.1.bb |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/valgrind/valgrind_3.10.1.bb b/meta/recipes-devtools/valgrind/valgrind_3.10.1.bb
index a25922a..543c8a6 100644
--- a/meta/recipes-devtools/valgrind/valgrind_3.10.1.bb
+++ b/meta/recipes-devtools/valgrind/valgrind_3.10.1.bb
@@ -8,7 +8,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=c46082167a314d785d012a244748d803 \
                     file://COPYING.DOCS;md5=8fdeb5abdb235a08e76835f8f3260215"
 
 X11DEPENDS = "virtual/libx11"
-DEPENDS = "${@bb.utils.contains('DISTRO_FEATURES', 'x11', '${X11DEPENDS}', '', d)}"
+DEPENDS = "${@bb.utils.contains('DISTRO_FEATURES', 'x11', '${X11DEPENDS}', '', d)} \
+           ${@bb.utils.contains('DISTRO_FEATURES', 'ptest', 'boost', '', d)} \
+        "
 
 SRC_URI = "http://www.valgrind.org/downloads/valgrind-${PV}.tar.bz2 \
            file://fixed-perl-path.patch \
-- 
1.7.9.5



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

* [PATCH 2/3] gcc-configure-common.inc: remove ac_cv_path_SED
  2015-02-03  1:22 [PATCH 0/3] meta: 3 fixes Robert Yang
  2015-02-03  1:22 ` [PATCH 1/3] valgrind: depends on boost when ptest Robert Yang
@ 2015-02-03  1:22 ` Robert Yang
  2015-02-03  1:22 ` [PATCH 3/3] binconfig-disabled.bbclass: fix echo command Robert Yang
  2 siblings, 0 replies; 5+ messages in thread
From: Robert Yang @ 2015-02-03  1:22 UTC (permalink / raw)
  To: openembedded-core

It is not needed any more since sed-native had been dropped.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-devtools/gcc/gcc-configure-common.inc |    1 -
 1 file changed, 1 deletion(-)

diff --git a/meta/recipes-devtools/gcc/gcc-configure-common.inc b/meta/recipes-devtools/gcc/gcc-configure-common.inc
index c30242d..6c60cf9 100644
--- a/meta/recipes-devtools/gcc/gcc-configure-common.inc
+++ b/meta/recipes-devtools/gcc/gcc-configure-common.inc
@@ -52,7 +52,6 @@ EXTRA_OECONF = "\
     ${@get_gcc_multiarch_setting(bb, d)} \
 "
 
-export ac_cv_path_SED = 'sed'
 export gcc_cv_collect2_libs = 'none required'
 # We need to set gcc_cv_collect2_libs else there is cross-compilation badness
 # in the config.log files (which might not get generated until do_compile
-- 
1.7.9.5



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

* [PATCH 3/3] binconfig-disabled.bbclass: fix echo command
  2015-02-03  1:22 [PATCH 0/3] meta: 3 fixes Robert Yang
  2015-02-03  1:22 ` [PATCH 1/3] valgrind: depends on boost when ptest Robert Yang
  2015-02-03  1:22 ` [PATCH 2/3] gcc-configure-common.inc: remove ac_cv_path_SED Robert Yang
@ 2015-02-03  1:22 ` Robert Yang
  2015-02-03  1:24   ` Robert Yang
  2 siblings, 1 reply; 5+ messages in thread
From: Robert Yang @ 2015-02-03  1:22 UTC (permalink / raw)
  To: openembedded-core

The ">" should be ">>".

We had got something like the following in pcap-config:
echo '--should-not-have-used-/usr/bin/pcap-config'
exit 1

(Lacks of #!/bin/sh)

(LOCAL REV: NOT UPSTREAM) -- Sent to oe-core on 20150202

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/classes/binconfig-disabled.bbclass |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/binconfig-disabled.bbclass b/meta/classes/binconfig-disabled.bbclass
index 0acc964..595cd09 100644
--- a/meta/classes/binconfig-disabled.bbclass
+++ b/meta/classes/binconfig-disabled.bbclass
@@ -12,7 +12,7 @@ do_install_append () {
 		echo "#!/bin/sh" > ${D}$x
 		# Make the disabled script emit invalid parameters for those configure
 		# scripts which call it without checking the return code.
-		echo "echo '--should-not-have-used-$x'" > ${D}$x
+		echo "echo '--should-not-have-used-$x'" >> ${D}$x
 		echo "exit 1" >> ${D}$x
 	done
 }
-- 
1.7.9.5



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

* Re: [PATCH 3/3] binconfig-disabled.bbclass: fix echo command
  2015-02-03  1:22 ` [PATCH 3/3] binconfig-disabled.bbclass: fix echo command Robert Yang
@ 2015-02-03  1:24   ` Robert Yang
  0 siblings, 0 replies; 5+ messages in thread
From: Robert Yang @ 2015-02-03  1:24 UTC (permalink / raw)
  To: openembedded-core



On 02/03/2015 09:22 AM, Robert Yang wrote:
> The ">" should be ">>".
>
> We had got something like the following in pcap-config:
> echo '--should-not-have-used-/usr/bin/pcap-config'
> exit 1
>
> (Lacks of #!/bin/sh)
>
> (LOCAL REV: NOT UPSTREAM) -- Sent to oe-core on 20150202

Sorry, the (LOCAL: xxx) should not be here, I've updated in the repo.

// Robert

>
> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> ---
>   meta/classes/binconfig-disabled.bbclass |    2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/classes/binconfig-disabled.bbclass b/meta/classes/binconfig-disabled.bbclass
> index 0acc964..595cd09 100644
> --- a/meta/classes/binconfig-disabled.bbclass
> +++ b/meta/classes/binconfig-disabled.bbclass
> @@ -12,7 +12,7 @@ do_install_append () {
>   		echo "#!/bin/sh" > ${D}$x
>   		# Make the disabled script emit invalid parameters for those configure
>   		# scripts which call it without checking the return code.
> -		echo "echo '--should-not-have-used-$x'" > ${D}$x
> +		echo "echo '--should-not-have-used-$x'" >> ${D}$x
>   		echo "exit 1" >> ${D}$x
>   	done
>   }
>


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

end of thread, other threads:[~2015-02-03  1:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-03  1:22 [PATCH 0/3] meta: 3 fixes Robert Yang
2015-02-03  1:22 ` [PATCH 1/3] valgrind: depends on boost when ptest Robert Yang
2015-02-03  1:22 ` [PATCH 2/3] gcc-configure-common.inc: remove ac_cv_path_SED Robert Yang
2015-02-03  1:22 ` [PATCH 3/3] binconfig-disabled.bbclass: fix echo command Robert Yang
2015-02-03  1:24   ` Robert Yang

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