* [PATCH] e2fsprogs: Add util-linux-libuuid to DEPENDS
@ 2014-02-28 11:33 David Nyström
2014-02-28 11:44 ` Burton, Ross
2014-02-28 17:24 ` Khem Raj
0 siblings, 2 replies; 7+ messages in thread
From: David Nyström @ 2014-02-28 11:33 UTC (permalink / raw)
To: openembedded-core
http://autobuilder.yoctoproject.org/main/builders/nightly-ppc/builds/59/steps/BuildImages/logs/stdio
| checking for pkg-config... <snip>/build/tmp/sysroots/x86_64-linux/usr/bin/pkg-config
| checking pkg-config is at least version 0.9.0... yes
| checking for uuid_generate in -luuid... no
| configure: error: external uuid library not found
| Configure failed. The contents of all config.log files follows to aid debugging
| ERROR: oe_runconf failed
| WARNING: <snip>
| ERROR: Function failed: do_configure <snip>
NOTE: recipe e2fsprogs-native-1.42.9-r0: task do_configure: Failed
ERROR: Task 279 (virtual:native<snip>/build/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.9.bb, do_configure) failed with exit code '1'
Signed-off-by: David Nyström <david.nystrom@enea.com>
---
meta/recipes-devtools/e2fsprogs/e2fsprogs.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs.inc b/meta/recipes-devtools/e2fsprogs/e2fsprogs.inc
index a34df37..436fc0e 100644
--- a/meta/recipes-devtools/e2fsprogs/e2fsprogs.inc
+++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs.inc
@@ -17,7 +17,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b48f21d765b875bd10400975d12c1ca2 \
file://lib/et/et_name.c;beginline=1;endline=11;md5=ead236447dac7b980dbc5b4804d8c836 \
file://lib/ss/ss.h;beginline=1;endline=20;md5=6e89ad47da6e75fecd2b5e0e81e1d4a6"
SECTION = "base"
-DEPENDS = "util-linux"
+DEPENDS = "util-linux util-linux-libuuid"
SRC_URI = "${SOURCEFORGE_MIRROR}/e2fsprogs/e2fsprogs-${PV}.tar.gz \
file://mkdir.patch"
--
1.8.3.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] e2fsprogs: Add util-linux-libuuid to DEPENDS
2014-02-28 11:33 [PATCH] e2fsprogs: Add util-linux-libuuid to DEPENDS David Nyström
@ 2014-02-28 11:44 ` Burton, Ross
2014-02-28 11:46 ` David Nyström
2014-02-28 11:47 ` David Nyström
2014-02-28 17:24 ` Khem Raj
1 sibling, 2 replies; 7+ messages in thread
From: Burton, Ross @ 2014-02-28 11:44 UTC (permalink / raw)
To: David Nyström; +Cc: OE-core
On 28 February 2014 11:33, David Nyström <david.c.nystrom@gmail.com> wrote:
> -DEPENDS = "util-linux"
> +DEPENDS = "util-linux util-linux-libuuid"
That makes no sense: the value of DEPENDS is a list of recipes, and
util-linux is the recipe.
Ross
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] e2fsprogs: Add util-linux-libuuid to DEPENDS
2014-02-28 11:44 ` Burton, Ross
@ 2014-02-28 11:46 ` David Nyström
2014-02-28 11:47 ` David Nyström
1 sibling, 0 replies; 7+ messages in thread
From: David Nyström @ 2014-02-28 11:46 UTC (permalink / raw)
To: Burton, Ross; +Cc: OE-core
On fre 28 feb 2014 12:44:36, Burton, Ross wrote:
> On 28 February 2014 11:33, David Nyström <david.c.nystrom@gmail.com> wrote:
>> -DEPENDS = "util-linux"
>> +DEPENDS = "util-linux util-linux-libuuid"
>
> That makes no sense: the value of DEPENDS is a list of recipes, and
> util-linux is the recipe.
>
> Ross
Yes, sorry about that, scrap this path.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] e2fsprogs: Add util-linux-libuuid to DEPENDS
2014-02-28 11:44 ` Burton, Ross
2014-02-28 11:46 ` David Nyström
@ 2014-02-28 11:47 ` David Nyström
1 sibling, 0 replies; 7+ messages in thread
From: David Nyström @ 2014-02-28 11:47 UTC (permalink / raw)
To: Burton, Ross; +Cc: OE-core
On 2014-02-28 12:44, Burton, Ross wrote:
> On 28 February 2014 11:33, David Nyström <david.c.nystrom@gmail.com> wrote:
>> -DEPENDS = "util-linux"
>> +DEPENDS = "util-linux util-linux-libuuid"
>
> That makes no sense: the value of DEPENDS is a list of recipes, and
> util-linux is the recipe.
>
> Ross
>
Correct, scrap this patch.
//DD
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] e2fsprogs: Add util-linux-libuuid to DEPENDS
2014-02-28 11:33 [PATCH] e2fsprogs: Add util-linux-libuuid to DEPENDS David Nyström
2014-02-28 11:44 ` Burton, Ross
@ 2014-02-28 17:24 ` Khem Raj
2014-02-28 17:29 ` Burton, Ross
1 sibling, 1 reply; 7+ messages in thread
From: Khem Raj @ 2014-02-28 17:24 UTC (permalink / raw)
To: David Nyström; +Cc: openembedded-core
[-- Attachment #1: Type: text/plain, Size: 192 bytes --]
On Feb 28, 2014, at 3:33 AM, David Nyström <david.c.nystrom@gmail.com> wrote:
> -DEPENDS = "util-linux"
> +DEPENDS = "util-linux util-linux-libuuid"
it should be RDEPENDS if at all.
[-- Attachment #2: Message signed with OpenPGP using GPGMail --]
[-- Type: application/pgp-signature, Size: 211 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] e2fsprogs: Add util-linux-libuuid to DEPENDS
2014-02-28 17:24 ` Khem Raj
@ 2014-02-28 17:29 ` Burton, Ross
2014-02-28 18:11 ` Khem Raj
0 siblings, 1 reply; 7+ messages in thread
From: Burton, Ross @ 2014-02-28 17:29 UTC (permalink / raw)
To: Khem Raj; +Cc: openembedded-core
It's a build failure, so not at all. :)
On 28 February 2014 17:24, Khem Raj <raj.khem@gmail.com> wrote:
>
> On Feb 28, 2014, at 3:33 AM, David Nyström <david.c.nystrom@gmail.com> wrote:
>
>> -DEPENDS = "util-linux"
>> +DEPENDS = "util-linux util-linux-libuuid"
>
> it should be RDEPENDS if at all.
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] e2fsprogs: Add util-linux-libuuid to DEPENDS
2014-02-28 17:29 ` Burton, Ross
@ 2014-02-28 18:11 ` Khem Raj
0 siblings, 0 replies; 7+ messages in thread
From: Khem Raj @ 2014-02-28 18:11 UTC (permalink / raw)
To: Burton, Ross; +Cc: openembedded-core
On Fri, Feb 28, 2014 at 9:29 AM, Burton, Ross <ross.burton@intel.com> wrote:
> It's a build failure, so not at all. :)
>
> On 28 February 2014 17:24, Khem Raj <raj.khem@gmail.com> wrote:
>>
>> On Feb 28, 2014, at 3:33 AM, David Nyström <david.c.nystrom@gmail.com> wrote:
>>
>>> -DEPENDS = "util-linux"
>>> +DEPENDS = "util-linux util-linux-libuuid"
>>
>> it should be RDEPENDS if at all.
moreover its native package.
>>
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2014-02-28 18:12 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-28 11:33 [PATCH] e2fsprogs: Add util-linux-libuuid to DEPENDS David Nyström
2014-02-28 11:44 ` Burton, Ross
2014-02-28 11:46 ` David Nyström
2014-02-28 11:47 ` David Nyström
2014-02-28 17:24 ` Khem Raj
2014-02-28 17:29 ` Burton, Ross
2014-02-28 18:11 ` Khem Raj
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox