Skip to content

Commit 6a1786c

Browse files
committed
fix: resolve test: =: unary operator expected error
1 parent d6489f0 commit 6a1786c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1272,7 +1272,7 @@ if test "$enable_crashhooks" = "yes"; then
12721272
fi
12731273

12741274
AX_CHECK_LINK_FLAG([-Wl,-wrap=__cxa_allocate_exception], [LINK_WRAP_SUPPORTED=yes],,,)
1275-
AM_CONDITIONAL([CRASH_HOOKS_WRAPPED_CXX_ABI],[test $LINK_WRAP_SUPPORTED = "yes"])
1275+
AM_CONDITIONAL([CRASH_HOOKS_WRAPPED_CXX_ABI],[test "$LINK_WRAP_SUPPORTED" = "yes"])
12761276

12771277
if test "$LINK_WRAP_SUPPORTED" = "yes"; then
12781278
AC_DEFINE(CRASH_HOOKS_WRAPPED_CXX_ABI, 1, [Define this symbol to use wrapped CXX ABIs for exception stacktraces])

0 commit comments

Comments
 (0)