summaryrefslogtreecommitdiffstats
path: root/scripts/config
diff options
context:
space:
mode:
authorYann E. MORIN <yann.morin.1998@free.fr>2012-07-15 16:37:35 -0400
committerMichal Marek <mmarek@suse.cz>2012-07-26 06:20:01 -0400
commit1925a276afa78c305dacb7f2da11825bffecad44 (patch)
treef2d2f4176b07b9bc8f28bf32cabb591f5b5577a7 /scripts/config
parent5b580fa671a6a8dd775bb6e54e4858678296c38a (diff)
scripts/config: fix double-quotes un-escaping
When reporting a string value, only the first double-quote was un-escaped. We need to un-escape all escaped double-quotes. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts/config')
-rwxr-xr-xscripts/config2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/config b/scripts/config
index ed6653ef9702..9e984bc96e18 100755
--- a/scripts/config
+++ b/scripts/config
@@ -128,7 +128,7 @@ while [ "$1" != "" ] ; do
128 V="${V/#CONFIG_$ARG=/}" 128 V="${V/#CONFIG_$ARG=/}"
129 V="${V/#\"/}" 129 V="${V/#\"/}"
130 V="${V/%\"/}" 130 V="${V/%\"/}"
131 V="${V/\\\"/\"}" 131 V="${V//\\\"/\"}"
132 echo "${V}" 132 echo "${V}"
133 fi 133 fi
134 fi 134 fi