From 4bdd3603f1655a4effba707260b5f3a26ec532ce Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 26 Jul 2016 11:33:02 -0400 Subject: [PATCH] fix an error message in a configure warning string --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 9cace4b9c..dca86deed 100644 --- a/configure.ac +++ b/configure.ac @@ -1900,7 +1900,7 @@ fi if test "$enable_coverage" = "yes" && test "$have_clang" = "no"; then case "$host_os" in darwin*) - AC_MSG_WARN([Tried to enable coverage on OSX without using the clang compiler. This might not work! If coverage fails, use CC=clang when configuring with --enable-profiling.]) + AC_MSG_WARN([Tried to enable coverage on OSX without using the clang compiler. This might not work! If coverage fails, use CC=clang when configuring with --enable-coverage.]) esac fi