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 | bb67ddeb2eed3e25c626a279ef53a7e8c7bfe6f2 (patch) | |
tree | a5cd401b043e80311db7497dec8c791b873aab2e /meta/recipes-devtools/elfutils | |
parent | 528b4ab831c7b0bc1412318d29e2b7f9cf711d57 (diff) | |
download | openembedded-core-contrib-bb67ddeb2eed3e25c626a279ef53a7e8c7bfe6f2.tar.gz |
recipes-devtools: 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.
[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-devtools/elfutils')
-rw-r--r-- | meta/recipes-devtools/elfutils/elfutils_0.148.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-devtools/elfutils/elfutils_0.148.bb b/meta/recipes-devtools/elfutils/elfutils_0.148.bb index 5d45f3a8d2c..45931b0ae98 100644 --- a/meta/recipes-devtools/elfutils/elfutils_0.148.bb +++ b/meta/recipes-devtools/elfutils/elfutils_0.148.bb @@ -46,7 +46,7 @@ SRC_URI += "\ inherit autotools gettext EXTRA_OECONF = "--program-prefix=eu- --without-lzma" -EXTRA_OECONF_append_virtclass-native = " --without-bzlib" +EXTRA_OECONF_append_class-native = " --without-bzlib" EXTRA_OECONF_append_libc-uclibc = " --enable-uclibc" do_configure_prepend() { @@ -60,8 +60,8 @@ do_configure_prepend() { # build only libelf for uclibc case EXTRA_OEMAKE_libc-uclibc = "-C libelf" -EXTRA_OEMAKE_virtclass-native = "" -EXTRA_OEMAKE_virtclass-nativesdk = "" +EXTRA_OEMAKE_class-native = "" +EXTRA_OEMAKE_class-nativesdk = "" BBCLASSEXTEND = "native nativesdk" |