diff options
author | Mans Rullgard <mans@mansr.com> | 2012-10-12 21:40:07 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-10-13 14:05:55 +0100 |
commit | ac17ccf73ad0cb6be74845ca05a1c18b2c5f7416 (patch) | |
tree | 1544997b91590db5ebe13bbe5e9404b7d761310c /configure | |
parent | 74c39bc682717022065aa79e2a3673d2592eb863 (diff) | |
download | ffmpeg-ac17ccf73ad0cb6be74845ca05a1c18b2c5f7416.tar.gz |
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: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |