diff options
author | Martin Kelly <mkelly@xevo.com> | 2017-03-28 13:58:10 -0700 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2017-03-30 07:39:17 +0000 |
commit | 3dd45a26466963bea03aca30177790382052ca14 (patch) | |
tree | 2cf8aad6f4a7896cd425ffa7bdd64036afe842e5 /meta-ivi-common/recipes-extended/dlt-daemon | |
parent | 7d1d7457ff2b71abe95525b26148d5a3e7a42790 (diff) |
dlt-daemon: remove spaces before +=
They're not needed (my bad).
Change-Id: Ie45f13c6274bae9d87b4b4df11410a6356b49dd7
Signed-off-by: Martin Kelly <mkelly@xevo.com>
Diffstat (limited to 'meta-ivi-common/recipes-extended/dlt-daemon')
-rw-r--r-- | meta-ivi-common/recipes-extended/dlt-daemon/dlt-daemon_2.11.1.bb | 4 | ||||
-rw-r--r-- | meta-ivi-common/recipes-extended/dlt-daemon/dlt-daemon_2.15.0.bb | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/meta-ivi-common/recipes-extended/dlt-daemon/dlt-daemon_2.11.1.bb b/meta-ivi-common/recipes-extended/dlt-daemon/dlt-daemon_2.11.1.bb index dc7cc9493..e6204c46f 100644 --- a/meta-ivi-common/recipes-extended/dlt-daemon/dlt-daemon_2.11.1.bb +++ b/meta-ivi-common/recipes-extended/dlt-daemon/dlt-daemon_2.11.1.bb @@ -35,8 +35,8 @@ inherit gzipnative autotools gettext cmake systemd # https://github.com/google/googletest/issues/854 # # If that issue is fixed, we can probably remove the manual -fPIC flags here. -OECMAKE_C_FLAGS += " -fPIC" -OECMAKE_CXX_FLAGS += " -fPIC" +OECMAKE_C_FLAGS += "-fPIC" +OECMAKE_CXX_FLAGS += "-fPIC" PACKAGES += "${PN}-systemd" SYSTEMD_PACKAGES = "${PN} ${PN}-systemd" diff --git a/meta-ivi-common/recipes-extended/dlt-daemon/dlt-daemon_2.15.0.bb b/meta-ivi-common/recipes-extended/dlt-daemon/dlt-daemon_2.15.0.bb index d068f250f..cdd80de50 100644 --- a/meta-ivi-common/recipes-extended/dlt-daemon/dlt-daemon_2.15.0.bb +++ b/meta-ivi-common/recipes-extended/dlt-daemon/dlt-daemon_2.15.0.bb @@ -29,8 +29,8 @@ inherit gzipnative autotools gettext cmake systemd # https://github.com/google/googletest/issues/854 # # If that issue is fixed, we can probably remove the manual -fPIC flags here. -OECMAKE_C_FLAGS += " -fPIC" -OECMAKE_CXX_FLAGS += " -fPIC" +OECMAKE_C_FLAGS += "-fPIC" +OECMAKE_CXX_FLAGS += "-fPIC" PACKAGES += "${PN}-systemd" SYSTEMD_PACKAGES = "${PN} ${PN}-systemd" |