Skip to content

Commit

Permalink
Merge pull request #1668 from ndim/test-string-equality-operator-typo…
Browse files Browse the repository at this point in the history
…-fix

The test(1) string comparison uses =, not ==
  • Loading branch information
stefanrueger authored Feb 7, 2024
2 parents b23830c + a97e71a commit 72500a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ AC_PROG_AR
AH_TEMPLATE([HAVE_YYLEX_DESTROY],
[Define if lex/flex has yylex_destroy])
# flex should have this
if test "x$LEX" == xflex; then
if test "x$LEX" = xflex; then
AC_MSG_CHECKING([whether yylex_destroy is generated by flex])
flex_version=`$LEX -V -v --version 2>/dev/null | $SED -e 's/^.* //'`
case $flex_version in
Expand Down

0 comments on commit 72500a1

Please sign in to comment.