* [PATCH 0/1] remake: fix insufficient gettext dependency
@ 2013-07-20 7:51 Petter Mabäcker
2013-07-20 7:51 ` [PATCH 1/1] " Petter Mabäcker
0 siblings, 1 reply; 2+ messages in thread
From: Petter Mabäcker @ 2013-07-20 7:51 UTC (permalink / raw)
To: openembedded-core
The following changes since commit 3dee534f1e25109e0bdb681de0746c336f4b8840:
lib/oeqa: fix dependecy check (2013-07-16 10:04:17 +0100)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib petmab/bug/4385
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=petmab/bug/4385
Petter Mabäcker (1):
remake: fix insufficient gettext dependency
meta/recipes-devtools/remake/remake_git.bb | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
--
1.7.9.5
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 1/1] remake: fix insufficient gettext dependency
2013-07-20 7:51 [PATCH 0/1] remake: fix insufficient gettext dependency Petter Mabäcker
@ 2013-07-20 7:51 ` Petter Mabäcker
0 siblings, 0 replies; 2+ messages in thread
From: Petter Mabäcker @ 2013-07-20 7:51 UTC (permalink / raw)
To: openembedded-core
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]
Signed-off-by: Petter Mabäcker <petter@technux.se>
---
meta/recipes-devtools/remake/remake_git.bb | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
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() {
--
1.7.9.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-07-20 7:52 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-20 7:51 [PATCH 0/1] remake: fix insufficient gettext dependency Petter Mabäcker
2013-07-20 7:51 ` [PATCH 1/1] " Petter Mabäcker
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox