Skip to content

Commit 531597f

Browse files
committed
[erts] Fix harmless configure bug
1 parent 1c3f341 commit 531597f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

erts/configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16726,7 +16726,7 @@ fi
1672616726
if test "$ac_cv_func_strerrorname_np" != "yes"
1672716727
then :
1672816728

16729-
if test $builtin_errno_id = no
16729+
if test "$builtin_errno_id" = "no"
1673016730
then :
1673116731
as_fn_error $? "No alternative to builtin erl_errno_id() found" "$LINENO" 5
1673216732
fi

erts/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1296,7 +1296,7 @@ AC_CHECK_FUNCS([strerrorname_np])
12961296

12971297
AS_IF([test "$ac_cv_func_strerrorname_np" != "yes"],
12981298
[
1299-
AS_IF([test $builtin_errno_id = no],
1299+
AS_IF([test "$builtin_errno_id" = "no"],
13001300
[AC_MSG_ERROR([No alternative to builtin erl_errno_id() found])])
13011301
])
13021302

0 commit comments

Comments
 (0)