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:18:29 +0000 |
commit | d005b787dfe2c9bcaefe41836f9b1c3008105171 (patch) | |
tree | f6840a662b7f625f98f033303d0fcbcb87564e30 /meta/recipes-extended/texinfo | |
parent | cc1f50fca85dc48a237a518b8afe8563225ea8fa (diff) | |
download | poky-d005b787dfe2c9bcaefe41836f9b1c3008105171.tar.gz |
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]
(From OE-Core rev: 528b4ab831c7b0bc1412318d29e2b7f9cf711d57)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/texinfo')
-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" | |||
9 | PR = "r5" | 9 | PR = "r5" |
10 | 10 | ||
11 | DEPENDS = "zlib ncurses texinfo-native" | 11 | DEPENDS = "zlib ncurses texinfo-native" |
12 | DEPENDS_virtclass-native = "zlib-native ncurses-native" | 12 | DEPENDS_class-native = "zlib-native ncurses-native" |
13 | 13 | ||
14 | TARGET_PATCH = "file://use_host_makedoc.patch" | 14 | TARGET_PATCH = "file://use_host_makedoc.patch" |
15 | TARGET_PATCH_virtclass-native = "" | 15 | TARGET_PATCH_class-native = "" |
16 | 16 | ||
17 | SRC_URI = "${GNU_MIRROR}/texinfo/texinfo-${PV}.tar.gz \ | 17 | SRC_URI = "${GNU_MIRROR}/texinfo/texinfo-${PV}.tar.gz \ |
18 | file://texinfo-4.12-zlib.patch \ | 18 | file://texinfo-4.12-zlib.patch \ |
@@ -44,7 +44,7 @@ do_install_append() { | |||
44 | mkdir -p ${D}${datadir}/${tex_texinfo} | 44 | mkdir -p ${D}${datadir}/${tex_texinfo} |
45 | install -p -m644 doc/texinfo.tex doc/txi-??.tex ${D}${datadir}/${tex_texinfo} | 45 | install -p -m644 doc/texinfo.tex doc/txi-??.tex ${D}${datadir}/${tex_texinfo} |
46 | } | 46 | } |
47 | do_install_append_virtclass-native() { | 47 | do_install_append_class-native() { |
48 | install -m 755 info/makedoc ${D}${bindir} | 48 | install -m 755 info/makedoc ${D}${bindir} |
49 | } | 49 | } |
50 | 50 | ||