diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2016-07-04 14:41:15 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-08 09:57:24 +0100 |
commit | dca5d9d21818e8b3506fcd31fe8abef88510a10f (patch) | |
tree | f6fcb34379cf4111778c460f7d7eb6830d4946ee /meta/recipes-core/gettext | |
parent | e1ca5d992994faca5c1d819ee57623ef6ad4ed7a (diff) | |
download | poky-dca5d9d21818e8b3506fcd31fe8abef88510a10f.tar.gz |
gettext: fix for low-version recipe
Make gettext-native in 0.16.1 recipe provides virtual/gettext-native like
what gettext-native in 0.19.6 recipe does. Otherwise we would fail to start
to do a world build if gettext and gettext-native are set to the low version.
Error message is like below.
ERROR: Multiple versions of gettext-native are due to be built
(From OE-Core rev: a0bdbd8f38d8d2ca0687f4353b715087f946247a)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/gettext')
-rw-r--r-- | meta/recipes-core/gettext/gettext_0.16.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/gettext/gettext_0.16.1.bb b/meta/recipes-core/gettext/gettext_0.16.1.bb index 6095c83232..9998676e94 100644 --- a/meta/recipes-core/gettext/gettext_0.16.1.bb +++ b/meta/recipes-core/gettext/gettext_0.16.1.bb | |||
@@ -9,7 +9,7 @@ PR = "r6" | |||
9 | DEPENDS = "virtual/libiconv" | 9 | DEPENDS = "virtual/libiconv" |
10 | DEPENDS_class-native = "" | 10 | DEPENDS_class-native = "" |
11 | PROVIDES = "virtual/libintl virtual/gettext" | 11 | PROVIDES = "virtual/libintl virtual/gettext" |
12 | PROVIDES_class-native = "" | 12 | PROVIDES_class-native = "virtual/gettext-native" |
13 | 13 | ||
14 | SRC_URI = "${GNU_MIRROR}/gettext/gettext-${PV}.tar.gz \ | 14 | SRC_URI = "${GNU_MIRROR}/gettext/gettext-${PV}.tar.gz \ |
15 | file://gettext-vpath.patch \ | 15 | file://gettext-vpath.patch \ |