Commit 7aa4e0db by Andreas Schwab

gcc-git-customization.sh: avoid double expansion

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