diff options
Diffstat (limited to 'meta/recipes-devtools/gcc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-multilib-config.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-multilib-config.inc b/meta/recipes-devtools/gcc/gcc-multilib-config.inc index f7f9f557db..4a1010ccf9 100644 --- a/meta/recipes-devtools/gcc/gcc-multilib-config.inc +++ b/meta/recipes-devtools/gcc/gcc-multilib-config.inc | |||
@@ -206,7 +206,7 @@ python gcc_multilib_setup() { | |||
206 | # take out '-' mcpu='s and march='s from parameters | 206 | # take out '-' mcpu='s and march='s from parameters |
207 | opts = [] | 207 | opts = [] |
208 | whitelist = (d.getVar("MULTILIB_OPTION_WHITELIST", True) or "").split() | 208 | whitelist = (d.getVar("MULTILIB_OPTION_WHITELIST", True) or "").split() |
209 | for i in tune_parameters['ccargs'].split(): | 209 | for i in d.expand(tune_parameters['ccargs']).split(): |
210 | if i in whitelist: | 210 | if i in whitelist: |
211 | # Need to strip '-' from option | 211 | # Need to strip '-' from option |
212 | opts.append(i[1:]) | 212 | opts.append(i[1:]) |