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 | 528b4ab831c7b0bc1412318d29e2b7f9cf711d57 (patch) | |
tree | 7c128d53c8150897640822f968268d6be5ede323 /meta/recipes-extended/texinfo/texinfo_4.13a.bb | |
parent | db1a03da3a6a6e7adb68e28883204adfaa8b3f47 (diff) | |
download | openembedded-core-528b4ab831c7b0bc1412318d29e2b7f9cf711d57.tar.gz openembedded-core-528b4ab831c7b0bc1412318d29e2b7f9cf711d57.tar.bz2 openembedded-core-528b4ab831c7b0bc1412318d29e2b7f9cf711d57.zip |
recipes-extended: 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-extended/texinfo/texinfo_4.13a.bb')
-rw-r--r-- | meta/recipes-extended/texinfo/texinfo_4.13a.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-extended/texinfo/texinfo_4.13a.bb b/meta/recipes-extended/texinfo/texinfo_4.13a.bb index 50892ce2cf..327faabddd 100644 --- a/meta/recipes-extended/texinfo/texinfo_4.13a.bb +++ b/meta/recipes-extended/texinfo/texinfo_4.13a.bb @@ -9,10 +9,10 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=adefda309052235aa5d1e99ce7557010" PR = "r5" DEPENDS = "zlib ncurses texinfo-native" -DEPENDS_virtclass-native = "zlib-native ncurses-native" +DEPENDS_class-native = "zlib-native ncurses-native" TARGET_PATCH = "file://use_host_makedoc.patch" -TARGET_PATCH_virtclass-native = "" +TARGET_PATCH_class-native = "" SRC_URI = "${GNU_MIRROR}/texinfo/texinfo-${PV}.tar.gz \ file://texinfo-4.12-zlib.patch \ @@ -44,7 +44,7 @@ do_install_append() { mkdir -p ${D}${datadir}/${tex_texinfo} install -p -m644 doc/texinfo.tex doc/txi-??.tex ${D}${datadir}/${tex_texinfo} } -do_install_append_virtclass-native() { +do_install_append_class-native() { install -m 755 info/makedoc ${D}${bindir} } |