config: fix style issues when source-ing files
Always enclose the sourced file between double-quotes (purely for consistency; enclosing or not are both allowed by the kconfig language).1.7
parent
712f0c9919
commit
d276ce2a4f
@ -1,13 +1,13 @@
|
||||
source config/backend.in
|
||||
source "config/backend.in"
|
||||
if ! BACKEND_ERROR
|
||||
source config/global.in
|
||||
source config/target.in
|
||||
source config/toolchain.in
|
||||
source config/kernel.in
|
||||
source config/binutils.in
|
||||
source config/cc.in
|
||||
source config/libc.in
|
||||
source config/debug.in
|
||||
source config/companion_libs.in
|
||||
source config/companion_tools.in
|
||||
source "config/global.in"
|
||||
source "config/target.in"
|
||||
source "config/toolchain.in"
|
||||
source "config/kernel.in"
|
||||
source "config/binutils.in"
|
||||
source "config/cc.in"
|
||||
source "config/libc.in"
|
||||
source "config/debug.in"
|
||||
source "config/companion_libs.in"
|
||||
source "config/companion_tools.in"
|
||||
endif # ! BACKEND_ERROR
|
||||
|
@ -1,3 +1,3 @@
|
||||
menu "Debug facilities"
|
||||
source config.gen/debug.in
|
||||
source "config.gen/debug.in"
|
||||
endmenu
|
||||
|
Loading…
Reference in New Issue