summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2011-05-17 12:01:37 +0300
committerLasse Collin <lasse.collin@tukaani.org>2011-05-17 12:01:37 +0300
commitec7106309c8060e9c646dba20c4f15689a0bbb04 (patch)
tree1547e5ce75d643bad483b56b4c6a6da7002ef58e
parent4c6e146df99696920f12410fb17754412797ef36 (diff)
downloadxz-ec7106309c8060e9c646dba20c4f15689a0bbb04.tar.gz
Build: Fix initialization of enable_check_* variables in configure.ac.
This doesn't matter much in practice since it is unlikely that anyone would have such environment variable names. Thanks to Wim Lewis.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 07b3ceb..7a122d7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -229,7 +229,7 @@ fi
m4_define([SUPPORTED_CHECKS], [crc32,crc64,sha256])
-m4_foreach([NAME], [SUPPORTED_FILTERS],
+m4_foreach([NAME], [SUPPORTED_CHECKS],
[enable_check_[]NAME=no
])dnl