提交 c7a0b9c5 编写于 作者: V Vitali Haravy

Do not put double quotes around empty variables.

上级 461945ee
......@@ -86,7 +86,12 @@ putpathvar() {
else
printf "configure: %-20s := %s %s\n" $1 "$T" "$2"
fi
printf "%-20s := \"%s\"\n" $1 "$T" >>config.tmp
if [ -z "$T" ]
then
printf "%-20s := \n" $1 >>config.tmp
else
printf "%-20s := \"%s\"\n" $1 "$T" >>config.tmp
fi
}
probe() {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册