summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2012-10-30 11:57:30 +0000
committerMans Rullgard <mans@mansr.com>2012-10-30 13:33:29 +0000
commitd16c4aebba1ba611e10d86aa02be4cdfd3fbc3c5 (patch)
tree793b2685a30414342683b73717a3271f7f404ed0
parent7658295ba353b8bedb3af904f46cfb1ba0cea86a (diff)
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>
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index f215c76c08..9528b5d890 100755
--- 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;
}
}