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:28:07 +0300 |
commit | 793d857e01e1725f16fc0c8af8172c91a9e38617 (patch) | |
tree | 6ef4253336bf26b4e54dfd792af5058d77a3684a | |
parent | Add underscores to attributes (__attribute((__foo__))). (diff) | |
download | xz-793d857e01e1725f16fc0c8af8172c91a9e38617.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.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 35720fef..39fd0ef4 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 |