]> git.sesse.net Git - ffmpeg/commitdiff
configure: fix print_config() with broke awks
authorMans Rullgard <mans@mansr.com>
Tue, 30 Oct 2012 11:57:30 +0000 (11:57 +0000)
committerMans Rullgard <mans@mansr.com>
Tue, 30 Oct 2012 13:33:29 +0000 (13:33 +0000)
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>
configure

index f215c76c08f0423b5dfd810167f646148579be14..9528b5d890c167281be9f53f2527a8ae51f5bee0 100755 (executable)
--- a/configure
+++ b/configure
@@ -584,7 +584,7 @@ print_config(){
                 } else if (file ~ /\\.asm\$/) {
                     printf(\"%%define %s %d\\n\", c, v) >>file;
                 } else if (file ~ /\\.mak\$/) {
-                    n = +v ? \"\" : \"!\";
+                    n = -v ? \"\" : \"!\";
                     printf(\"%s%s=yes\\n\", n, c) >>file;
                 }
             }