diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2015-07-14 14:36:45 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-01 21:30:26 +0100 |
commit | 55b183aa476754b050779d36dfbb03eb936443ad (patch) | |
tree | 09c51bada5faf84fbe7a8bcdf02626b7e308a3be /meta | |
parent | 31e3d1bab6612d8116086f9ada048a0c094fb2c8 (diff) | |
download | openembedded-core-55b183aa476754b050779d36dfbb03eb936443ad.tar.gz openembedded-core-55b183aa476754b050779d36dfbb03eb936443ad.tar.bz2 openembedded-core-55b183aa476754b050779d36dfbb03eb936443ad.zip |
connman-conf: fix SRC_URI_append
* add leading space so that it works even with some .bbappend adding
additional files to SRC_URI without trailing space
(From OE-Core rev: 0f282f1d4946ac6e81959c66172c115405632a26)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-connectivity/connman/connman-conf.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-connectivity/connman/connman-conf.bb b/meta/recipes-connectivity/connman/connman-conf.bb index af726401e2..56094f1f53 100644 --- a/meta/recipes-connectivity/connman/connman-conf.bb +++ b/meta/recipes-connectivity/connman/connman-conf.bb @@ -4,9 +4,9 @@ network interface for a qemu machine." LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6" -SRC_URI_append_qemuall = "file://wired.config \ - file://wired-setup \ - " +SRC_URI_append_qemuall = " file://wired.config \ + file://wired-setup \ +" PR = "r2" PACKAGE_ARCH = "${MACHINE_ARCH}" |