summaryrefslogtreecommitdiff
path: root/config/config.in
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2010-03-29 18:24:50 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2010-03-29 18:24:50 (GMT)
commitd276ce2a4fbb5c86bdc7b8cab3860c34741751af (patch)
treee4ab393aaf1cbd5445cc4432c8a17fea1c6806cd /config/config.in
parent712f0c9919a43cac22ef0bfa8f0cb07f24e810db (diff)
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).
Diffstat (limited to 'config/config.in')
-rw-r--r--config/config.in22
1 files changed, 11 insertions, 11 deletions
diff --git a/config/config.in b/config/config.in
index a013f94..ab71d1a 100644
--- a/config/config.in
+++ b/config/config.in
@@ -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