mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-17 20:17:55 +02:00
configure: fix print_config() with broke awks
Some awk versions do not treat the result of unary + on a (numeric) string as numeric, giving wrong results when used in a boolean context Using unary - instead is logically equivalent works as expected. Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
parent
7658295ba3
commit
d16c4aebba
2
configure
vendored
2
configure
vendored
@ -584,7 +584,7 @@ print_config(){
|
|||||||
} else if (file ~ /\\.asm\$/) {
|
} else if (file ~ /\\.asm\$/) {
|
||||||
printf(\"%%define %s %d\\n\", c, v) >>file;
|
printf(\"%%define %s %d\\n\", c, v) >>file;
|
||||||
} else if (file ~ /\\.mak\$/) {
|
} else if (file ~ /\\.mak\$/) {
|
||||||
n = +v ? \"\" : \"!\";
|
n = -v ? \"\" : \"!\";
|
||||||
printf(\"%s%s=yes\\n\", n, c) >>file;
|
printf(\"%s%s=yes\\n\", n, c) >>file;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user