Commit 7aa4e0db by Andreas Schwab

gcc-git-customization.sh: avoid double expansion

parent f275d73a
...@@ -11,9 +11,9 @@ ask () { ...@@ -11,9 +11,9 @@ ask () {
read answer read answer
if [ "x$answer" = "x" ] if [ "x$answer" = "x" ]
then then
eval $var=\"$default\" eval $var=\$default
else else
eval $var=\"$answer\" eval $var=\$answer
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