summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/remake/remake_git.bb
diff options
context:
space:
mode:
authorPetter Mabäcker <petter@technux.se>2013-07-15 18:53:25 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-07-24 11:35:36 +0100
commit1b01e392e1f8c9b2056587a8593cb077a4a08b0f (patch)
treed52797f82e10963e736b25e39d40e2cdd0c47dd8 /meta/recipes-devtools/remake/remake_git.bb
parentf8baa3571f6755c9a4ad9d9ffe8ff9f04bbb2ea1 (diff)
downloadast2050-yocto-poky-1b01e392e1f8c9b2056587a8593cb077a4a08b0f.zip
ast2050-yocto-poky-1b01e392e1f8c9b2056587a8593cb077a4a08b0f.tar.gz
remake: fix insufficient gettext dependency
By default when inheriting gettext, "gettext-minimal-native" is added as a dependency for native. The bb-file for remake use 'autopoint' (not included in gettext-minimal-native). When building remake-native it will result in a failure in do_configure for all cases when gettext (or gettext-native) is not build from some other recipes, before building 'remake-native'. This is solved by adding a build-dependency to gettext-native in remake-native. Fixes [YOCTO #4385] (From OE-Core rev: 4bd98157f1d7a96741d036e67b04819ccbc9a9c6) Signed-off-by: Petter Mabäcker <petter@technux.se> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/remake/remake_git.bb')
-rw-r--r--meta/recipes-devtools/remake/remake_git.bb6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-devtools/remake/remake_git.bb b/meta/recipes-devtools/remake/remake_git.bb
index 13d8ce9..405c69f 100644
--- a/meta/recipes-devtools/remake/remake_git.bb
+++ b/meta/recipes-devtools/remake/remake_git.bb
@@ -1,4 +1,4 @@
-PR = "r0"
+PR = "r1"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
file://tests/COPYING;md5=d32239bcb673463ab874e80d47fae504 \
@@ -12,6 +12,10 @@ S = "${WORKDIR}/git"
PV = "3.82+dbg-0.9+git${SRCPV}"
DEPENDS += "readline"
+# Need to add "gettext-native" dependency to remake-native.
+# By default only "gettext-minimal-native" is added
+# when inherit gettext.
+DEPENDS_class-native += "gettext-native"
PROVIDES += "make"
do_configure_prepend() {
OpenPOWER on IntegriCloud