diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-12 12:11:34 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-13 11:41:21 +0000 |
commit | 4db39d233c268f99ce73fe78af3921a18da08056 (patch) | |
tree | 1914073e95c1af0411f76a6aba42df0bae04b036 /meta/recipes-core | |
parent | 3d0dccd02612caecf1a82395160121ba47153ddc (diff) | |
download | poky-4db39d233c268f99ce73fe78af3921a18da08056.tar.gz |
meta/recipes: Remove virtclass references
The virtclass overrides will go away at some point (apart from the multilib one).
Change them all to class-xxx instead since people enjoy copy and pasting them.
(From OE-Core rev: d1c073d2813bd913617990cd047507353ea0c09e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/dbus/dbus-ptest_1.6.18.bb | 2 | ||||
-rw-r--r-- | meta/recipes-core/ncurses/ncurses.inc | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/meta/recipes-core/dbus/dbus-ptest_1.6.18.bb b/meta/recipes-core/dbus/dbus-ptest_1.6.18.bb index 386f561024..30e8223482 100644 --- a/meta/recipes-core/dbus/dbus-ptest_1.6.18.bb +++ b/meta/recipes-core/dbus/dbus-ptest_1.6.18.bb | |||
@@ -27,7 +27,7 @@ FILESPATH = "${FILE_DIRNAME}/dbus" | |||
27 | inherit autotools pkgconfig gettext ptest | 27 | inherit autotools pkgconfig gettext ptest |
28 | 28 | ||
29 | EXTRA_OECONF_X = "${@base_contains('DISTRO_FEATURES', 'x11', '--with-x', '--without-x', d)}" | 29 | EXTRA_OECONF_X = "${@base_contains('DISTRO_FEATURES', 'x11', '--with-x', '--without-x', d)}" |
30 | EXTRA_OECONF_X_virtclass-native = "--without-x" | 30 | EXTRA_OECONF_X_class-native = "--without-x" |
31 | 31 | ||
32 | EXTRA_OECONF = "--enable-tests \ | 32 | EXTRA_OECONF = "--enable-tests \ |
33 | --enable-modular-tests \ | 33 | --enable-modular-tests \ |
diff --git a/meta/recipes-core/ncurses/ncurses.inc b/meta/recipes-core/ncurses/ncurses.inc index 01cdf132da..a94466a634 100644 --- a/meta/recipes-core/ncurses/ncurses.inc +++ b/meta/recipes-core/ncurses/ncurses.inc | |||
@@ -33,11 +33,11 @@ base_libdir_class-native = "${libdir}" | |||
33 | # This was derrived from the upstream debian ncurses which uses | 33 | # This was derrived from the upstream debian ncurses which uses |
34 | # these settings for 32 and 64 bit hosts. | 34 | # these settings for 32 and 64 bit hosts. |
35 | EXCONFIG_ARGS = "" | 35 | EXCONFIG_ARGS = "" |
36 | EXCONFIG_ARGS_virtclass-native = " \ | 36 | EXCONFIG_ARGS_class-native = " \ |
37 | --disable-lp64 \ | 37 | --disable-lp64 \ |
38 | --with-chtype='long' \ | 38 | --with-chtype='long' \ |
39 | --with-mmask-t='long'" | 39 | --with-mmask-t='long'" |
40 | EXCONFIG_ARGS_virtclass-nativesdk = " \ | 40 | EXCONFIG_ARGS_class-nativesdk = " \ |
41 | --disable-lp64 \ | 41 | --disable-lp64 \ |
42 | --with-chtype='long' \ | 42 | --with-chtype='long' \ |
43 | --with-mmask-t='long'" | 43 | --with-mmask-t='long'" |
@@ -50,11 +50,11 @@ PACKAGES_DYNAMIC = "^${PN}-lib.*" | |||
50 | # because the sstate had a hard coded search path. Until this is fixed | 50 | # because the sstate had a hard coded search path. Until this is fixed |
51 | # another way this is deemed good enough. | 51 | # another way this is deemed good enough. |
52 | EX_TERMCAP = "" | 52 | EX_TERMCAP = "" |
53 | EX_TERMCAP_virtclass-native = ":/etc/termcap:/usr/share/misc/termcap" | 53 | EX_TERMCAP_class-native = ":/etc/termcap:/usr/share/misc/termcap" |
54 | EX_TERMCAP_virtclass-nativesdk = ":/etc/termcap:/usr/share/misc/termcap" | 54 | EX_TERMCAP_class-nativesdk = ":/etc/termcap:/usr/share/misc/termcap" |
55 | EX_TERMINFO = "" | 55 | EX_TERMINFO = "" |
56 | EX_TERMINFO_virtclass-native = ":/etc/terminfo:/usr/share/terminfo:/usr/share/misc/terminfo:/lib/terminfo" | 56 | EX_TERMINFO_class-native = ":/etc/terminfo:/usr/share/terminfo:/usr/share/misc/terminfo:/lib/terminfo" |
57 | EX_TERMINFO_virtclass-nativesdk = ":/etc/terminfo:/usr/share/terminfo:/usr/share/misc/terminfo:/lib/terminfo" | 57 | EX_TERMINFO_class-nativesdk = ":/etc/terminfo:/usr/share/terminfo:/usr/share/misc/terminfo:/lib/terminfo" |
58 | 58 | ||
59 | # Helper function for do_configure to allow multiple configurations | 59 | # Helper function for do_configure to allow multiple configurations |
60 | # $1 the directory to run configure in | 60 | # $1 the directory to run configure in |