mirror of
https://github.com/systemd/systemd.git
synced 2024-12-20 23:53:38 +08:00
configure.ac: keep posix compat for string tests
'==' and '=' are equivalent in /bin/bash, but POSIX compliant shells do not understand '==.'
This commit is contained in:
parent
b7a4d8de92
commit
0a7f0fcc79
@ -566,7 +566,7 @@ AM_CONDITIONAL(HAVE_XZ, [test "$have_xz" = "yes"])
|
||||
# ------------------------------------------------------------------------------
|
||||
have_lz4=no
|
||||
AC_ARG_ENABLE(lz4, AS_HELP_STRING([--enable-lz4], [Enable optional LZ4 support]))
|
||||
AS_IF([test "x$enable_lz4" == "xyes"], [
|
||||
AS_IF([test "x$enable_lz4" = "xyes"], [
|
||||
AC_CHECK_HEADERS(lz4.h,
|
||||
[AC_DEFINE(HAVE_LZ4, 1, [Define in LZ4 is available]) have_lz4=yes],
|
||||
[AC_MSG_ERROR([*** LZ4 support requested but headers not found])])
|
||||
|
Loading…
Reference in New Issue
Block a user