diff options
author | Jason Wessel <jason.wessel@windriver.com> | 2019-07-11 14:48:36 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-07-11 23:18:54 -0700 |
commit | da057468d72cbb897e655507aa4401b14005b9a7 (patch) | |
tree | 35912a8405c6e7f2287aa9a33231ce938c6b016b | |
parent | 119f04647708f76072c87b4d5e2d6e18190c5afe (diff) | |
download | meta-openembedded-da057468d72cbb897e655507aa4401b14005b9a7.tar.gz |
libbytesize: Add depends for gettext-native
If the local.conf has set 'USE_NLS = "no"' the build of libbytesize
will fail with the following message:
| configure: error: in `/build/tmp/work/core2-64-poky-linux/libbytesize/2.0-r0/build':
| configure: error: gettext not found
| See `config.log' for more details
| NOTE: The following config.log files may provide further information.
| NOTE: /build/tmp/work/core2-64-poky-linux/libbytesize/2.0-r0/build/config.log
| ERROR: configure failed
The issue is that libbytesize needs to full version of gettext in
order to configure properly, and not the minimal version which is
provided by default when building with 'USE_NLS = "no"'.
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/libbytesize/libbytesize_2.0.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libbytesize/libbytesize_2.0.bb b/meta-oe/recipes-support/libbytesize/libbytesize_2.0.bb index 1beb6777e..74f1800d1 100644 --- a/meta-oe/recipes-support/libbytesize/libbytesize_2.0.bb +++ b/meta-oe/recipes-support/libbytesize/libbytesize_2.0.bb | |||
@@ -20,6 +20,7 @@ DEPENDS += " \ | |||
20 | libpcre2 \ | 20 | libpcre2 \ |
21 | gmp \ | 21 | gmp \ |
22 | mpfr \ | 22 | mpfr \ |
23 | gettext-native \ | ||
23 | " | 24 | " |
24 | 25 | ||
25 | FILES_${PN} += "${PYTHON_SITEPACKAGES_DIR}/bytesize" | 26 | FILES_${PN} += "${PYTHON_SITEPACKAGES_DIR}/bytesize" |