mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-29 19:30:36 +02:00
Avoid bash-specific '==' comparison operator in guile.m4.
Fixes <http://bugs.gnu.org/18898>. * meta/guile.m4 (GUILE_PROGS): Use '=' instead of the bash-specific '==' comparison operator in 'test' call.
This commit is contained in:
parent
fda17c20a3
commit
03242f398f
1 changed files with 1 additions and 1 deletions
|
@ -231,7 +231,7 @@ AC_DEFUN([GUILE_PROGS],
|
|||
AC_MSG_ERROR([Guile $_guile_required_version required, but $_guile_prog_version found])
|
||||
fi
|
||||
fi
|
||||
elif test "$GUILE_EFFECTIVE_VERSION" == "$_major_version.$_minor_version" -a -z "$_micro_version"; then
|
||||
elif test "$GUILE_EFFECTIVE_VERSION" = "$_major_version.$_minor_version" -a -z "$_micro_version"; then
|
||||
# Allow prereleases that have the right effective version.
|
||||
true
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue