diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2016-08-18 05:32:59 -0400 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-08-22 15:49:29 +0200 |
commit | 107689a13348d5c1030bbdf03917ebcb143d2018 (patch) | |
tree | 7670525e7c80304113da0d4c92f3b0ae88cf5f92 /meta-oe/recipes-connectivity | |
parent | 1a2cfa6aab95cfba0f56d4922b8f87ca93cee88c (diff) | |
download | meta-openembedded-107689a13348d5c1030bbdf03917ebcb143d2018.tar.gz |
meta-oe: Standardize use of "_append" versus use of "+="
Remove superfluous "+=", then manually add necessary leading space.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-connectivity')
-rw-r--r-- | meta-oe/recipes-connectivity/krb5/krb5_1.13.2.bb | 4 | ||||
-rw-r--r-- | meta-oe/recipes-connectivity/zabbix/zabbix_2.4.7.bb | 2 | ||||
-rw-r--r-- | meta-oe/recipes-connectivity/zeromq/zeromq_4.1.5.bb | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/meta-oe/recipes-connectivity/krb5/krb5_1.13.2.bb b/meta-oe/recipes-connectivity/krb5/krb5_1.13.2.bb index 500e194d5..3a3886bce 100644 --- a/meta-oe/recipes-connectivity/krb5/krb5_1.13.2.bb +++ b/meta-oe/recipes-connectivity/krb5/krb5_1.13.2.bb | |||
@@ -57,8 +57,8 @@ CACHED_CONFIGUREVARS += "krb5_cv_attr_constructor_destructor=yes ac_cv_func_regc | |||
57 | ac_cv_printf_positional=yes ac_cv_file__etc_environment=yes \ | 57 | ac_cv_printf_positional=yes ac_cv_file__etc_environment=yes \ |
58 | ac_cv_file__etc_TIMEZONE=no" | 58 | ac_cv_file__etc_TIMEZONE=no" |
59 | 59 | ||
60 | CFLAGS_append += "-DDESTRUCTOR_ATTR_WORKS=1 -I${STAGING_INCDIR}/et" | 60 | CFLAGS_append = " -DDESTRUCTOR_ATTR_WORKS=1 -I${STAGING_INCDIR}/et" |
61 | LDFLAGS_append += "-lpthread" | 61 | LDFLAGS_append = " -lpthread" |
62 | 62 | ||
63 | FILES_${PN} += "${datadir}/gnats" | 63 | FILES_${PN} += "${datadir}/gnats" |
64 | FILES_${PN}-doc += "${datadir}/examples" | 64 | FILES_${PN}-doc += "${datadir}/examples" |
diff --git a/meta-oe/recipes-connectivity/zabbix/zabbix_2.4.7.bb b/meta-oe/recipes-connectivity/zabbix/zabbix_2.4.7.bb index c2c4eaefa..03bad313c 100644 --- a/meta-oe/recipes-connectivity/zabbix/zabbix_2.4.7.bb +++ b/meta-oe/recipes-connectivity/zabbix/zabbix_2.4.7.bb | |||
@@ -53,7 +53,7 @@ EXTRA_OECONF = '--enable-dependency-tracking \ | |||
53 | --with-ssh2 \ | 53 | --with-ssh2 \ |
54 | --with-sqlite3 \ | 54 | --with-sqlite3 \ |
55 | ' | 55 | ' |
56 | CFLAGS_append += "-lldap -llber" | 56 | CFLAGS_append = " -lldap -llber" |
57 | 57 | ||
58 | do_configure_prepend() { | 58 | do_configure_prepend() { |
59 | export KERNEL_VERSION="${KERNEL_VERSION}" | 59 | export KERNEL_VERSION="${KERNEL_VERSION}" |
diff --git a/meta-oe/recipes-connectivity/zeromq/zeromq_4.1.5.bb b/meta-oe/recipes-connectivity/zeromq/zeromq_4.1.5.bb index 3fa572415..34749d0b4 100644 --- a/meta-oe/recipes-connectivity/zeromq/zeromq_4.1.5.bb +++ b/meta-oe/recipes-connectivity/zeromq/zeromq_4.1.5.bb | |||
@@ -16,8 +16,8 @@ S = "${WORKDIR}/zeromq-${PV}" | |||
16 | 16 | ||
17 | #Uncomment to choose polling system manually. valid values are kqueue, epoll, devpoll, poll or select | 17 | #Uncomment to choose polling system manually. valid values are kqueue, epoll, devpoll, poll or select |
18 | #EXTRA_OECONF += "--with-poller=kqueue" | 18 | #EXTRA_OECONF += "--with-poller=kqueue" |
19 | #CFLAGS_append += "-O0" | 19 | #CFLAGS_append = " -O0" |
20 | #CXXFLAGS_append += "-O0" | 20 | #CXXFLAGS_append = " -O0" |
21 | 21 | ||
22 | inherit autotools ptest pkgconfig | 22 | inherit autotools ptest pkgconfig |
23 | 23 | ||