diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2012-10-27 16:48:17 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-11-02 16:15:30 +0000 |
commit | cafb550fe9034754933f1708446dde155dcc3d51 (patch) | |
tree | d478075c915cc5ebaf01ce191f5a98acd5f87dcf /meta/recipes-support/boost | |
parent | d37944fff256e9f52d05a56db3edb42c7a352cce (diff) | |
download | openembedded-core-cafb550fe9034754933f1708446dde155dcc3d51.tar.gz openembedded-core-cafb550fe9034754933f1708446dde155dcc3d51.tar.bz2 openembedded-core-cafb550fe9034754933f1708446dde155dcc3d51.zip |
recipes-support: replace virtclass-native(sdk) with class-native(sdk)
The overrides virtclass-native and virtclass-nativesdk are deprecated,
which should be replaced by class-native and class-nativesdk.
NOTE:
There were 2 errors in libcap.inc, the BUILD_LDFLAGS_virtclass_native
should be BUILD_LDFLAGS_virtclass-native (the "_" should be "-"),
otherwise it doesn't work, and the value was: "-Wl,rpath=...", this is
incorrect, it shoudl be: "-Wl,-rpath=..." (lacked a - ), but we don't
need this line, since it is already in the default BUILD_LDFLAGS. Remove
it and we don't need to bump the PR since we just removed a unused line.
[YOCTO #3297]
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-support/boost')
-rw-r--r-- | meta/recipes-support/boost/boost.inc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/meta/recipes-support/boost/boost.inc b/meta/recipes-support/boost/boost.inc index ec602a6cf4..36a94e10ea 100644 --- a/meta/recipes-support/boost/boost.inc +++ b/meta/recipes-support/boost/boost.inc @@ -7,7 +7,7 @@ DESCRIPTION = "Free peer-reviewed portable C++ source libraries" HOMEPAGE = "http://www.boost.org/" SECTION = "libs" DEPENDS = "boost-native zlib" -DEPENDS_virtclass-native = "" +DEPENDS_class-native = "" LICENSE = "BSL-1.0 & MIT & Python-2.0" ARM_INSTRUCTION_SET = "arm" @@ -73,7 +73,7 @@ FILES_${PN}-staticdev = "${libdir}/libboost_*.a" # "boost" is a metapackage which pulls in all boost librabries PACKAGES += "${PN}" RRECOMMENDS_${PN} += "${BOOST_PACKAGES}" -RRECOMMENDS_${PN}_virtclass-native = "" +RRECOMMENDS_${PN}_class-native = "" ALLOW_EMPTY_${PN} = "1" # to avoid GNU_HASH QA errors added LDFLAGS to ARCH; a little bit dirty but at least it works @@ -176,15 +176,15 @@ do_install() { BBCLASSEXTEND = "native" -do_configure_virtclass-native() { +do_configure_class-native() { : } -do_boostconfig_virtclass-native() { +do_boostconfig_class-native() { : } -do_compile_virtclass-native() { +do_compile_class-native() { set -ex cd ${S}/tools/build/v2/engine rm -rf bin.* @@ -194,7 +194,7 @@ do_compile_virtclass-native() { # This is too terrible - the build script doesn't give any good # way I can see to find out where the binaries are placed, so # rely on only one bin.foo directory being created. -do_install_virtclass-native () { +do_install_class-native () { set -ex cd ${S}/tools/build/v2/engine install -d ${D}${bindir}/ |