Commit 1925a276 authored by Yann E. MORIN's avatar Yann E. MORIN Committed by Michal Marek

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: default avatar"Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
parent 5b580fa6
......@@ -128,7 +128,7 @@ while [ "$1" != "" ] ; do
V="${V/#CONFIG_$ARG=/}"
V="${V/#\"/}"
V="${V/%\"/}"
V="${V/\\\"/\"}"
V="${V//\\\"/\"}"
echo "${V}"
fi
fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment