Skip to content

Commit 17483b0

Browse files
screamerbgtheotherjimmy
authored andcommitted
Fixed gcc.py typo
get_conifg_option -> get_config_option
1 parent cca1455 commit 17483b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/toolchains/gcc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def get_compile_options(self, defines, includes):
172172
opts = ['-D%s' % d for d in defines] + ['@%s' % self.get_inc_file(includes)]
173173
config_header = self.get_config_header()
174174
if config_header is not None:
175-
opts = opts + self.get_conifg_option(config_header)
175+
opts = opts + self.get_config_option(config_header)
176176
return opts
177177

178178
@hook_tool

0 commit comments

Comments
 (0)