summaryrefslogtreecommitdiff
path: root/config/companion_libs.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/companion_libs.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/companion_libs.in')
-rw-r--r--config/companion_libs.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/config/companion_libs.in b/config/companion_libs.in
index 64cf138..9543284 100644
--- a/config/companion_libs.in
+++ b/config/companion_libs.in
@@ -139,32 +139,32 @@ config LIBELF_TARGET
if GMP || GMP_TARGET
comment "GMP version needed to build for target"
depends on !GMP
-source config/companion_libs/gmp.in
+source "config/companion_libs/gmp.in"
endif
if MPFR || MPFR_TARGET
comment "MPFR version needed to build for target"
depends on !MPFR
-source config/companion_libs/mpfr.in
+source "config/companion_libs/mpfr.in"
endif
if PPL || PPL_TARGET
comment "PPL version needed to build for target"
depends on !PPL
-source config/companion_libs/ppl.in
+source "config/companion_libs/ppl.in"
endif
if CLOOG || CLOOG_TARGET
comment "CLOOG version needed to build for target"
depends on !CLOOG
-source config/companion_libs/cloog.in
+source "config/companion_libs/cloog.in"
endif
if MPC || MPC_TARGET
comment "MPC version needed to build for target"
depends on !MPC
-source config/companion_libs/mpc.in
+source "config/companion_libs/mpc.in"
endif
if LIBELF || LIBELF_TARGET
comment "libelf version needed to build for target"
depends on !LIBELF
-source config/companion_libs/libelf.in
+source "config/companion_libs/libelf.in"
endif
config FOO