diff options
author | André Draszik <andre.draszik@jci.com> | 2019-01-13 10:55:11 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-01-13 10:28:01 -0800 |
commit | 24af1f974cc95c50dfa56ad15b113279c3993c5d (patch) | |
tree | 40a09c3734718cf88b34e4c3b991ae11360fdee8 /meta-networking/recipes-connectivity/mosquitto | |
parent | 88f2b979caf24fad736b8e378cf9daa142ae0567 (diff) | |
download | meta-openembedded-24af1f974cc95c50dfa56ad15b113279c3993c5d.tar.gz |
meta-networking: remove True option to getVar calls (again)
A couple have still been missed in the past despite multiple
attempts at doing so (or simply have re-appeared?).
Search & replace made using the following command:
sed -e 's|\(d\.getVar \?\)( \?\([^,()]*\), \?True)|\1(\2)|g' \
-i $(git grep -E 'getVar ?\( ?([^,()]*), ?True\)' \
| cut -d':' -f1 \
| sort -u)
Signed-off-by: André Draszik <andre.draszik@jci.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-connectivity/mosquitto')
-rw-r--r-- | meta-networking/recipes-connectivity/mosquitto/mosquitto_1.5.4.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-networking/recipes-connectivity/mosquitto/mosquitto_1.5.4.bb b/meta-networking/recipes-connectivity/mosquitto/mosquitto_1.5.4.bb index 01562aad1..8f406ff9c 100644 --- a/meta-networking/recipes-connectivity/mosquitto/mosquitto_1.5.4.bb +++ b/meta-networking/recipes-connectivity/mosquitto/mosquitto_1.5.4.bb | |||
@@ -39,7 +39,7 @@ EXTRA_OEMAKE = " \ | |||
39 | WITH_BUNDLED_DEPS=no \ | 39 | WITH_BUNDLED_DEPS=no \ |
40 | " | 40 | " |
41 | 41 | ||
42 | export LIB_SUFFIX = "${@d.getVar('baselib', True).replace('lib', '')}" | 42 | export LIB_SUFFIX = "${@d.getVar('baselib').replace('lib', '')}" |
43 | 43 | ||
44 | do_install() { | 44 | do_install() { |
45 | oe_runmake 'DESTDIR=${D}' install | 45 | oe_runmake 'DESTDIR=${D}' install |