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/icu | |
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/icu')
-rw-r--r-- | meta/recipes-support/icu/icu-3.6.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-support/icu/icu-3.6.inc b/meta/recipes-support/icu/icu-3.6.inc index d969caa0ae..272f6d15ba 100644 --- a/meta/recipes-support/icu/icu-3.6.inc +++ b/meta/recipes-support/icu/icu-3.6.inc @@ -11,12 +11,12 @@ BASE_SRC_URI = "ftp://ftp.software.ibm.com/software/globalization/icu/3.6/icu4c- SRC_URI = "${BASE_SRC_URI} \ file://noldlibpath.patch \ " -SRC_URI_virtclass-native = "${BASE_SRC_URI}" +SRC_URI_class-native = "${BASE_SRC_URI}" LICENSE = "ICU" LIC_FILES_CHKSUM = "file://../license.html;md5=5c94767cedb5d6987c902ac850ded2c6" DEPENDS = "icu-native" -DEPENDS_virtclass-native = "" +DEPENDS_class-native = "" S = "${WORKDIR}/icu/source" |