summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2014-11-17 18:43:19 +0200
committerLasse Collin <lasse.collin@tukaani.org>2014-11-17 18:43:19 +0200
commit542cac122ed3550148a2af0033af22b757491378 (patch)
tree4d7619d93f764fa1c8aed6a498203179c599b04f
parent7b03a15cea8cd4f19ed680b51c4bcbae3ce4142f (diff)
downloadxz-542cac122ed3550148a2af0033af22b757491378.tar.gz
Build: Fix Autoconf warnings about escaped backquotes.
Thanks to Daniel Richard G. for pointing out that it's good to sometimes run autoreconf -fi with -Wall.
-rw-r--r--configure.ac7
1 files changed, 3 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 12c0117..d2c0a6d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -297,7 +297,7 @@ case $enable_assembler in
;;
*)
AC_MSG_RESULT([])
- AC_MSG_ERROR([--enable-assembler accepts only \`yes', \`no', \`x86', or \`x86_64'.])
+ AC_MSG_ERROR([--enable-assembler accepts only `yes', `no', `x86', or `x86_64'.])
;;
esac
AM_CONDITIONAL(COND_ASM_X86, test "x$enable_assembler" = xx86)
@@ -317,7 +317,7 @@ if test "x$enable_small" = xyes; then
AC_DEFINE([HAVE_SMALL], [1], [Define to 1 if optimizing for size.])
elif test "x$enable_small" != xno; then
AC_MSG_RESULT([])
- AC_MSG_ERROR([--enable-small accepts only \`yes' or \`no'])
+ AC_MSG_ERROR([--enable-small accepts only `yes' or `no'])
fi
AC_MSG_RESULT([$enable_small])
AM_CONDITIONAL(COND_SMALL, test "x$enable_small" = xyes)
@@ -357,8 +357,7 @@ case $enable_threads in
;;
*)
AC_MSG_RESULT([])
- AC_MSG_ERROR([--enable-threads only accepts
- \`yes', \`no', \`posix', \`win95', or \`vista'])
+ AC_MSG_ERROR([--enable-threads only accepts `yes', `no', `posix', `win95', or `vista'])
;;
esac