diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2011-05-17 12:01:37 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2011-05-17 12:01:37 +0300 |
commit | ec7106309c8060e9c646dba20c4f15689a0bbb04 (patch) | |
tree | 1547e5ce75d643bad483b56b4c6a6da7002ef58e | |
parent | Add underscores to attributes (__attribute((__foo__))). (diff) | |
download | xz-ec7106309c8060e9c646dba20c4f15689a0bbb04.tar.xz |
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.
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 07b3ceb3..7a122d71 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 |