Commit ac17ccf7 authored by Mans Rullgard's avatar Mans Rullgard

configure: work around bug in ash shell

The ash 'test' builtin misbehaves if the first operand of a binary
operator looks like a unary operator.
Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
parent 74c39bc6
......@@ -593,7 +593,7 @@ print_config(){
}
print_enabled(){
test "$1" = -n && end=" " && shift || end="\n"
test x"$1" = x-n && end=" " && shift || end="\n"
suf=$1
shift
for v; do
......
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