Skip to content

Commit

Permalink
scripts/config: fix double-quotes un-escaping
Browse files Browse the repository at this point in the history
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" <[email protected]>
Signed-off-by: Michal Marek <[email protected]>
  • Loading branch information
yann-morin-1998 authored and michal42 committed Jul 26, 2012
1 parent 5b580fa commit 1925a27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/config
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ while [ "$1" != "" ] ; do
V="${V/#CONFIG_$ARG=/}"
V="${V/#\"/}"
V="${V/%\"/}"
V="${V/\\\"/\"}"
V="${V//\\\"/\"}"
echo "${V}"
fi
fi
Expand Down

0 comments on commit 1925a27

Please sign in to comment.