diff options
author | Thomas Klausner <wiz@NetBSD.org> | 2014-10-30 00:33:39 +0100 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2014-11-11 22:43:51 -0500 |
commit | 03242f398f3520b1b27caf5885c8d5600094f944 (patch) | |
tree | aaa0134f3f1053f420d996c80c455526a84db693 /meta | |
parent | fda17c20a3d088fccab1671c8881bd217d83d5f6 (diff) |
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.
Diffstat (limited to 'meta')
-rw-r--r-- | meta/guile.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/guile.m4 b/meta/guile.m4 index 441dcd4e8..dd3c212e8 100644 --- a/meta/guile.m4 +++ b/meta/guile.m4 @@ -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 |