mirror of
https://github.com/matrix-construct/construct
synced 2025-01-14 16:46:50 +01:00
configure: Fix reported error generated circa line 18840.
This commit is contained in:
parent
636fa86b68
commit
8d061be07f
1 changed files with 2 additions and 1 deletions
|
@ -205,6 +205,7 @@ AC_ARG_WITH(assert, AC_HELP_STRING([--with-assert[[[=trap]]]], [Soften assertion
|
|||
], [
|
||||
assert_type="abort"
|
||||
AC_MSG_RESULT([no])
|
||||
AC_SUBST(ASSERT_TYPE, $assert_type)
|
||||
])
|
||||
])
|
||||
|
||||
|
@ -214,7 +215,7 @@ AM_COND_IF(ASSERT,
|
|||
RB_DEFINE_UNQUOTED([ASSERT], ["$assert_type"], [Assertion behavior])
|
||||
fi
|
||||
|
||||
if [ "$assert_type" == "trap" ]; then
|
||||
if [[ "$assert_type" == "trap" ]]; then
|
||||
RB_DEFINE([ASSERT_INTRINSIC], [1], [Intrinsic assertion behavior])
|
||||
fi
|
||||
])
|
||||
|
|
Loading…
Reference in a new issue