summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/connman/connman
diff options
context:
space:
mode:
authorCristian Iorga <cristian.iorga@intel.com>2015-09-09 18:36:50 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-12 22:48:44 +0100
commit302ec4665011ed71bb3487f97ef80be6e90844f7 (patch)
treed19965ae05c32412c4813f236d70fd48b3918b6a /meta/recipes-connectivity/connman/connman
parent08ec92a04e074afe6eb326e4d5532ddcee2183a6 (diff)
downloadpoky-302ec4665011ed71bb3487f97ef80be6e90844f7.tar.gz
connman: upgrade to 1.30
Bugfixes. build-create-dirs-before-putting-files-in-them.patch patch removed, patch included upstream. (From OE-Core rev: 080ae179e1de7f507263c550de8c02e3e224a964) Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/connman/connman')
-rw-r--r--meta/recipes-connectivity/connman/connman/build-create-dirs-before-putting-files-in-them.patch46
1 files changed, 0 insertions, 46 deletions
diff --git a/meta/recipes-connectivity/connman/connman/build-create-dirs-before-putting-files-in-them.patch b/meta/recipes-connectivity/connman/connman/build-create-dirs-before-putting-files-in-them.patch
deleted file mode 100644
index 260d68d3df..0000000000
--- a/meta/recipes-connectivity/connman/connman/build-create-dirs-before-putting-files-in-them.patch
+++ /dev/null
@@ -1,46 +0,0 @@
1When automake's dependency tracking is enabled a mirror of the source tree is
2created in the build directory as it writes the dependency information.
3
4However, if dependency tracking is disabled on an out-of-tree build this mirror
5isn't created and it's possible that the .service files can't be written as the
6directories they go into haven't been created yet (racing against the compiles,
7which do create directories).
8
9Upstream-Status: Pending
10Signed-off-by: Ross Burton <ross.burton@intel.com>
11
12---
13 Makefile.am | 4 ++++
14 1 file changed, 4 insertions(+)
15
16diff --git a/Makefile.am b/Makefile.am
17index 507736d..bc3c695 100644
18--- a/Makefile.am
19+++ b/Makefile.am
20@@ -410,9 +410,11 @@ MAINTAINERCLEANFILES = Makefile.in \
21
22
23 src/builtin.h: src/genbuiltin $(builtin_sources)
24+ $(AM_V_AT)$(MKDIR_P) $(dir $@)
25 $(AM_V_GEN)$(srcdir)/src/genbuiltin $(builtin_modules) > $@
26
27 vpn/builtin.h: src/genbuiltin $(builtin_vpn_sources)
28+ $(AM_V_AT)$(MKDIR_P) $(dir $@)
29 $(AM_V_GEN)$(srcdir)/src/genbuiltin $(builtin_vpn_modules) > $@
30
31 src/connman.conf: src/connman-dbus.conf src/connman-polkit.conf
32@@ -449,9 +451,11 @@ do_subst = $(AM_V_GEN)$(SED) \
33 -e 's,[@]sysconfdir[@],$(sysconfdir),g'
34
35 %.service: %.service.in Makefile
36+ $(AM_V_AT)$(MKDIR_P) $(dir $@)
37 $(do_subst) < $< > $@
38
39 scripts/connman: scripts/connman.in Makefile
40+ $(AM_V_at)$(MKDIR_P) scripts
41 $(do_subst) < $< > $@
42
43 include/connman/version.h: include/version.h
44--
452.1.4
46