123456789101112131415161718192021222324 |
- From f3c664d069d81a4872a1ec8241ee709f37c53e9c Mon Sep 17 00:00:00 2001
- From: Aaron Merey <[email protected]>
- Date: Tue, 29 Oct 2024 14:16:57 -0400
- Subject: [PATCH] configure.ac: Fix ENABLE_IMA_VERIFICATION conditional
- Fix test statement for ENABLE_IMA_VERIFICATION always evalutating to
- false due to a missing 'x'.
- Signed-off-by: Aaron Merey <[email protected]>
- ---
- configure.ac | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
- --- a/configure.ac
- +++ b/configure.ac
- @@ -895,7 +895,7 @@ AS_IF([test "x$enable_debuginfod" != "xn
- AM_CONDITIONAL([DEBUGINFOD],[test "x$enable_debuginfod" = "xyes"])
- AS_IF([test "x$enable_debuginfod_ima_verification" = "xyes"],AC_DEFINE([ENABLE_IMA_VERIFICATION],[1],[Build IMA verification]))
- AS_IF([test "x$have_libarchive" = "xyes"],AC_DEFINE([HAVE_LIBARCHIVE],[1],[Define to 1 if libarchive is available]))
- -AM_CONDITIONAL([ENABLE_IMA_VERIFICATION],[test "$enable_debuginfod_ima_verification" = "xyes"])
- +AM_CONDITIONAL([ENABLE_IMA_VERIFICATION],[test "x$enable_debuginfod_ima_verification" = "xyes"])
- AM_CONDITIONAL([OLD_LIBMICROHTTPD],[test "x$old_libmicrohttpd" = "xyes"])
-
- dnl for /etc/profile.d/elfutils.{csh,sh}
|