diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-06-12 19:08:11 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-06-12 19:08:11 +0200 |
commit | 42d718c0b129f2cd50b271583d362e94e269e39c (patch) | |
tree | 10c6ac188fa1ff87c2ac1ae14507ffa423761628 | |
parent | bb4e50f30c46bef8ab49a886c3042644a25322d9 (diff) |
Fix the misspelled corpora test configure option
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
-rw-r--r-- | configure.ac | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index e5b29d7..5ab3a84 100644 --- a/configure.ac +++ b/configure.ac @@ -102,12 +102,12 @@ AC_ARG_WITH([tools], [Only build libsquashfs, do not build the tools.])], [], [with_tools="yes"]) -AC_ARG_ENABLE([copora-tests], - [AS_HELP_STRING([--enable-copora-tests], - [Perform coprora based reproducability tests.])], - [], [enable_copora_tests="no"]) +AC_ARG_ENABLE([corpora-tests], + [AS_HELP_STRING([--enable-corpora-tests], + [Perform corpora based reproducability tests.])], + [], [enable_corpora_tests="no"]) -AM_CONDITIONAL([CORPORA_TESTS], [test "x$enable_copora_tests" = "xyes"]) +AM_CONDITIONAL([CORPORA_TESTS], [test "x$enable_corpora_tests" = "xyes"]) AS_IF([test "x$build_windows" = "xyes"], [with_pthread="no"], []) AS_IF([test "x$with_tools" != "xyes"], [with_selinux="no"], []) |