diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2015-01-12 19:08:51 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-01-16 23:08:27 +0000 |
commit | 03ab499a0546b7b98e3496223a8d1d18d3305564 (patch) | |
tree | 74ceaa006f5f62ff93d99b5bef8f727c955b6ae2 /meta/recipes-connectivity/connman/connman.inc | |
parent | 55a45864ead1a47b144b3c4583e82c086700d16f (diff) | |
download | poky-03ab499a0546b7b98e3496223a8d1d18d3305564.tar.gz |
connman: fix B != S
And bump the PR to avoid:
configure: error: source directory already configured; run "make distclean" there first
(From OE-Core rev: 38aa1ef57392fcb726fcdd0b708b9d76f0279c77)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/connman/connman.inc')
-rw-r--r-- | meta/recipes-connectivity/connman/connman.inc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/meta/recipes-connectivity/connman/connman.inc b/meta/recipes-connectivity/connman/connman.inc index ddabdb96f5..736b324704 100644 --- a/meta/recipes-connectivity/connman/connman.inc +++ b/meta/recipes-connectivity/connman/connman.inc | |||
@@ -67,18 +67,18 @@ SYSTEMD_SERVICE_${PN} = "connman.service" | |||
67 | SYSTEMD_SERVICE_${PN}-vpn = "connman-vpn.service" | 67 | SYSTEMD_SERVICE_${PN}-vpn = "connman-vpn.service" |
68 | SYSTEMD_WIRED_SETUP = "ExecStartPre=-${libdir}/connman/wired-setup" | 68 | SYSTEMD_WIRED_SETUP = "ExecStartPre=-${libdir}/connman/wired-setup" |
69 | 69 | ||
70 | inherit autotools-brokensep pkgconfig systemd update-rc.d | 70 | inherit autotools pkgconfig systemd update-rc.d |
71 | 71 | ||
72 | do_configure_append () { | 72 | do_configure_append () { |
73 | sed -i "s#ExecStart=#${SYSTEMD_WIRED_SETUP}\nExecStart=#" ${S}/src/connman.service | 73 | sed -i "s#ExecStart=#${SYSTEMD_WIRED_SETUP}\nExecStart=#" ${B}/src/connman.service |
74 | } | 74 | } |
75 | 75 | ||
76 | # This allows *everyone* to access ConnMan over DBus, without any access | 76 | # This allows *everyone* to access ConnMan over DBus, without any access |
77 | # control. Really the at_console flag should work, which would mean that | 77 | # control. Really the at_console flag should work, which would mean that |
78 | # both this and the xuser patch can be dropped. | 78 | # both this and the xuser patch can be dropped. |
79 | do_compile_append() { | 79 | do_compile_append() { |
80 | sed -i -e s:deny:allow:g src/connman-dbus.conf | 80 | sed -i -e s:deny:allow:g ${S}/src/connman-dbus.conf |
81 | sed -i -e s:deny:allow:g vpn/vpn-dbus.conf | 81 | sed -i -e s:deny:allow:g ${S}/vpn/vpn-dbus.conf |
82 | } | 82 | } |
83 | 83 | ||
84 | do_install_append() { | 84 | do_install_append() { |
@@ -89,9 +89,9 @@ do_install_append() { | |||
89 | fi | 89 | fi |
90 | 90 | ||
91 | install -d ${D}${bindir} | 91 | install -d ${D}${bindir} |
92 | install -m 0755 ${S}/tools/*-test ${D}${bindir} | 92 | install -m 0755 ${B}/tools/*-test ${D}${bindir} |
93 | if [ -e ${S}/tools/wispr ]; then | 93 | if [ -e ${B}/tools/wispr ]; then |
94 | install -m 0755 ${S}/tools/wispr ${D}${bindir} | 94 | install -m 0755 ${B}/tools/wispr ${D}${bindir} |
95 | fi | 95 | fi |
96 | install -m 0755 ${B}/client/connmanctl ${D}${bindir} | 96 | install -m 0755 ${B}/client/connmanctl ${D}${bindir} |
97 | 97 | ||