diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2023-02-01 16:50:38 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-02-15 21:46:56 +0000 |
commit | 54d0147307e0fb581db20603cfec58d74343a0de (patch) | |
tree | 0924d0197faf85851987995fe249615d0ee28e16 /meta/recipes-devtools/rust/rust-common.inc | |
parent | f8183e4c6f63ac34ab17262f60ea4b64d6712e6f (diff) | |
download | poky-54d0147307e0fb581db20603cfec58d74343a0de.tar.gz |
meta: remove True option to getVar and getVarFlag calls (again)
* True is default since 2016 and most layers were already updated
not to pass this parameter where not necessary, e.g. oe-core was
updated couple times, first in:
https://git.openembedded.org/openembedded-core/commit/?id=7c552996597faaee2fbee185b250c0ee30ea3b5f
Updated with the same regexp as later oe-core update:
https://git.openembedded.org/openembedded-core/commit/?id=9f551d588693328e4d99d33be94f26684eafcaba
with small modification to replace not only d.getVar, but also data.getVar as in e.g.:
e.data.getVar('ERR_REPORT_USERNAME', True)
and for getVarFlag:
sed -e 's|\(d\.getVarFlag \?\)( \?\([^,()]*, \?[^,()]*\), \?True)|\1(\2)|g' \
-i $(git grep -E 'getVarFlag ?\( ?([^,()]*), ?([^,()]*), ?True\)' \
| cut -d':' -f1 \
| sort -u)
(From OE-Core rev: de7bf6689a19dc614ce4b39c84ffd825bee1b962)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 26c74fd10614582e177437608908eb43688ab510)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit 24a86d0c55ee89ae0dc77975e1d0ee02898d2289)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/rust/rust-common.inc')
-rw-r--r-- | meta/recipes-devtools/rust/rust-common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/rust/rust-common.inc b/meta/recipes-devtools/rust/rust-common.inc index ef70c48d0f..db0bd8fc1b 100644 --- a/meta/recipes-devtools/rust/rust-common.inc +++ b/meta/recipes-devtools/rust/rust-common.inc | |||
@@ -109,7 +109,7 @@ def llvm_features_from_target_fpu(d): | |||
109 | # TARGET_FPU can be hard or soft. +soft-float tell llvm to use soft float | 109 | # TARGET_FPU can be hard or soft. +soft-float tell llvm to use soft float |
110 | # ABI. There is no option for hard. | 110 | # ABI. There is no option for hard. |
111 | 111 | ||
112 | fpu = d.getVar('TARGET_FPU', True) | 112 | fpu = d.getVar('TARGET_FPU') |
113 | return ["+soft-float"] if fpu == "soft" else [] | 113 | return ["+soft-float"] if fpu == "soft" else [] |
114 | 114 | ||
115 | def llvm_features(d): | 115 | def llvm_features(d): |