diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-05 18:28:41 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-06 09:26:05 +0100 |
commit | 7c0aa8fd809c9633b21fbae88e556190263586a2 (patch) | |
tree | cf24b28e13402dbba1120dbced0e311833179711 /meta/recipes-connectivity | |
parent | 77a4ac26fbaeea05507a518df9bfee87a224ff51 (diff) | |
download | poky-7c0aa8fd809c9633b21fbae88e556190263586a2.tar.gz |
neard: fix for parallel build
for neard tools/snep-send object might cause a
parallel build failure,due to undetected
dependency on dbus.h header file.
Patch will be submitted upstream.
Fixes [YOCTO #6389].
(From OE-Core rev: ae55abd60ef217ad1a957102d80b06857ea8ebcd)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r-- | meta/recipes-connectivity/neard/neard/Fix-snep-send-parallel-build.patch | 31 | ||||
-rw-r--r-- | meta/recipes-connectivity/neard/neard_0.14.bb | 1 |
2 files changed, 32 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/neard/neard/Fix-snep-send-parallel-build.patch b/meta/recipes-connectivity/neard/neard/Fix-snep-send-parallel-build.patch new file mode 100644 index 0000000000..f3029927d0 --- /dev/null +++ b/meta/recipes-connectivity/neard/neard/Fix-snep-send-parallel-build.patch | |||
@@ -0,0 +1,31 @@ | |||
1 | From fbbf600df474865172b47212d94e3dc5013cc2df Mon Sep 17 00:00:00 2001 | ||
2 | From: Cristian Iorga <cristian.iorga@intel.com> | ||
3 | Date: Wed, 4 Jun 2014 16:40:18 +0300 | ||
4 | Subject: [PATCH] tools: Fix snep-send parallel build | ||
5 | |||
6 | tools/snep-send object might cause a | ||
7 | parallel build failure,due to undetected | ||
8 | dependency on dbus.h header file. | ||
9 | |||
10 | Upstream-Status: Pending | ||
11 | Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> | ||
12 | --- | ||
13 | Makefile.am | 2 ++ | ||
14 | 1 file changed, 2 insertions(+) | ||
15 | |||
16 | diff --git a/Makefile.am b/Makefile.am | ||
17 | index 26f49e7..0e4a5b5 100644 | ||
18 | --- a/Makefile.am | ||
19 | +++ b/Makefile.am | ||
20 | @@ -169,6 +169,8 @@ tools_snep_send_SOURCES = $(gdbus_sources) src/log.c src/dbus.c \ | ||
21 | src/agent.c | ||
22 | tools_snep_send_LDADD = ${GLIB_LIBS} ${DBUS_LIBS} | ||
23 | |||
24 | +tools/snep-send.$(OBJEXT): include/near/dbus.h | ||
25 | + | ||
26 | tools_nfctool_nfctool_SOURCES = tools/nfctool/main.c \ | ||
27 | tools/nfctool/nfctool.h \ | ||
28 | tools/nfctool/adapter.h \ | ||
29 | -- | ||
30 | 1.9.1 | ||
31 | |||
diff --git a/meta/recipes-connectivity/neard/neard_0.14.bb b/meta/recipes-connectivity/neard/neard_0.14.bb index ac9aaf1498..663d7ea768 100644 --- a/meta/recipes-connectivity/neard/neard_0.14.bb +++ b/meta/recipes-connectivity/neard/neard_0.14.bb | |||
@@ -1,6 +1,7 @@ | |||
1 | require neard.inc | 1 | require neard.inc |
2 | 2 | ||
3 | SRC_URI = "${KERNELORG_MIRROR}/linux/network/nfc/${BPN}-${PV}.tar.xz \ | 3 | SRC_URI = "${KERNELORG_MIRROR}/linux/network/nfc/${BPN}-${PV}.tar.xz \ |
4 | file://Fix-snep-send-parallel-build.patch \ | ||
4 | file://neard.in \ | 5 | file://neard.in \ |
5 | file://neard.service.in \ | 6 | file://neard.service.in \ |
6 | " | 7 | " |