aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJia Tan <jiat0218@gmail.com>2023-10-31 21:51:40 +0800
committerJia Tan <jiat0218@gmail.com>2023-10-31 21:55:21 +0800
commit9b1268538b0b2c6c0a121f95165de65fc71ad23c (patch)
tree9acb740d84d61474749eae1dbc10a177470e289d
parentliblzma: Use lzma_always_inline in memcmplen.h. (diff)
downloadxz-9b1268538b0b2c6c0a121f95165de65fc71ad23c.tar.xz
Build: Fix text wrapping in an output message.
-rw-r--r--configure.ac9
1 files changed, 5 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 63bc5d7e..1d1c8118 100644
--- a/configure.ac
+++ b/configure.ac
@@ -865,11 +865,12 @@ CFLAGS="$OLD_CFLAGS"
# win95, and the compiler does not support attribute constructor, then we
# would end up with a multithreaded build that is thread-unsafe. As a
# result this configuration is not allowed.
-if test "x$enable_small$enable_threads$have_func_attribute_constructor"\
+if test "x$enable_small$enable_threads$have_func_attribute_constructor" \
= xyeswin95no; then
- AC_MSG_ERROR([--enable-threads=win95 and --enable-small cannot be
- used at the same time with a compiler that doesn't support
- __attribute__((__constructor__))])
+ AC_MSG_ERROR([
+ --enable-threads=win95 and --enable-small cannot be used
+ at the same time with a compiler that doesn't support
+ __attribute__((__constructor__))])
fi
###############################################################################