Skip to content

Commit

Permalink
Remove bash syntax
Browse files Browse the repository at this point in the history
* `==` is bash and not POSIX
Bug: https://bugs.gentoo.org/931239
Signed-off-by: David Seifert <[email protected]>
  • Loading branch information
SoapGentoo authored and AndreasFuchsTPM committed May 10, 2024
1 parent e5b45a8 commit a90e7f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ AS_IF([test "x$enable_self_generated_certificate" = xyes],
[AC_DEFINE([SELF_GENERATED_CERTIFICATE], [1], [Allow usage of self generated root certificate])],
[AS_IF([test "x$integration_tcti" != "xdevice"], [AC_DEFINE([FAPI_TEST_EK_CERT_LESS], [1], [Perform integration tests without EK certificate verification])])])

AM_CONDITIONAL([INIT_CA], [test "x$enable_self_generated_certificate" == xyes])
AM_CONDITIONAL([INIT_CA], [test "x$enable_self_generated_certificate" = xyes])

AS_IF([test "x$enable_integration" = "xyes" && test "x$enable_self_generated_certificate" != "xyes" && test "x$integration_tcti" != "xdevice"],
[AC_MSG_WARN([Running integration tests without EK certificate verification, use --enable-self-generated-certificate for full test coverage])])
Expand Down

0 comments on commit a90e7f6

Please sign in to comment.