projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5b580fa
)
scripts/config: fix double-quotes un-escaping
author
Yann E. MORIN
<yann.morin.1998@free.fr>
Sun, 15 Jul 2012 20:37:35 +0000
(22:37 +0200)
committer
Michal Marek
<mmarek@suse.cz>
Thu, 26 Jul 2012 10:20:01 +0000
(12:20 +0200)
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>
scripts/config
patch
|
blob
|
history
diff --git
a/scripts/config
b/scripts/config
index ed6653ef9702aa5320756537bb942e8a35123cb4..9e984bc96e188cb2e3d086c7b811e3edb2d6df64 100755
(executable)
--- a/
scripts/config
+++ b/
scripts/config
@@
-128,7
+128,7
@@
while [ "$1" != "" ] ; do
V="${V/#CONFIG_$ARG=/}"
V="${V/#\"/}"
V="${V/%\"/}"
- V="${V/\\\"/\"}"
+ V="${V/
/
\\\"/\"}"
echo "${V}"
fi
fi